﻿


form.formset-login {
    padding-left: 3rem;
    padding-right: 3rem;
}



    .field-validation-error {
        color: #e80c4d;
        font-weight: bold;
    }

    .field-validation-valid {
        display: none;
    }

    input.input-validation-error {
        border: 1px solid #e80c4d;
    }

    .validation-summary-errors {
        color: #e80c4d;
        font-weight: bold;
        font-size: 1.1em;
    }

    .validation-summary-valid {
        display: none;
    }


    /*.loaderLogin {
    display: none !important;*/ /* Hidden by default */
    /*position: fixed;*/ /* Stay in place */
    /*z-index: 9999;*/ /* Sit on top */
    /*width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);*/ /* White background with opacity */
    /*}

.spinnerLogin {
    border: 16px solid #f3f3f3;*/ /* Light grey */
    /*border-top: 16px solid #3498db;*/ /* Blue */
    /*border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}*/

    #loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    .spinner {
        border: 5px solid #f3f3f3;
        border-radius: 50%;
        border-top: 5px solid #3498db;
        width: 50px;
        height: 50px;
        animation: spin 1s linear infinite;
    }




@media(max-width:576px) {

    form.formset-login {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}





    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .toggle-password {
        cursor: pointer;
    }
    /* Remember Me and Forgot Password */
    .remember {
        margin-bottom: 20px;
    }

    .checkbox label {
        margin: 0;
        color: #666;
    }

.generic-link {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 0px;
    outline: none;
    cursor: pointer;
    color: var(--primary-text);
    text-decoration: none !important;
}

.generic-link a:hover {
    text-decoration: underline;
}


    /* Sign-in Button */
    .sign-in-btn {
        margin-top: 20px;
    }

    .account {
        padding: 26px;
    }

        .account p {
            margin-bottom: 0.5rem;
            font-size: 1.1em;
        }


button#btnLogin:active {
    background-color: #415a7c;
    border-color: #415a7c;
}