﻿.login-container {
    padding: 0 140px;
}

.login-image-style {
    width: 100%;
    height: auto;
    max-height: 93vh;
    object-fit: cover;
    border-radius: 22px;
}

.logo-style {
    width: 85%;
}

.title-style {
    font-size: 21px;
    font-weight: 700;
}

label {
    font-size: 14px;
}

.form-control-lg {
    font-size: 14px;
}

.btn-custom {
    color: white;
    border-color: #039047;
    background-color: #039047;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
}

    .btn-custom:hover {
        color: white;
        border-color: #039047;
        background-color: #039047;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 400;
        opacity: 0.9;
    }

.btn-outline-custom {
    color: #039047;
    border-color: #039047;
    background-color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
}

    .btn-outline-custom:hover {
        color: #039047;
        border-color: #039047;
        background-color: white;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 400;
        opacity: 0.9;
    }

.toast-wrapper {
    display: block;
}

.toast-container {
    position: absolute;
    top: 0;
    left: 0;
}

#loadingIndicator {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #039047;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (min-width: 1920px) {
    .login-container {
        padding: 0 250px;
    }

    .logo-style {
        width: 75%;
    }

    .title-style {
        font-size: 23px;
        font-weight: 700;
    }
}

@media only screen and (max-width: 991px) {
    .login-img-container {
        display: none;
    }

    .logo-style {
        width: 75%;
    }

    .title-style {
        font-size: 25px;
    }
}

@media only screen and (max-width: 575px) {
    .login-img-container {
        display: none;
    }

    .login-container {
        padding: 0 25px !important;
    }

    .logo-style {
        width: 70%;
    }

    .title-style {
        font-size: 20px;
        font-weight: 700;
    }

    .toast-wrapper {
        display: flex;
        justify-content: center;
    }

    .toast-container {
        position: absolute;
        top: 0;
        left: unset;
    }
}

@media only screen and (max-width: 412px) {
    .login-img-container {
        display: none;
    }

    .login-container {
        padding: 0 20px !important;
    }

    .logo-style {
        width: 75%;
    }

    .title-style {
        font-size: 18px;
        font-weight: 700;
    }
}