/* Shared: Loader */
.modal-auth-wrapper .loader-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-auth-wrapper .loader-circle {
    border: 4px solid #f1f1f1;
    border-top: 4px solid #262D3F;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: modal-spin 1s linear infinite;
}

@keyframes modal-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* LOGIN MODAL (#modal-login) */
#modal-login {
    border-radius: 5px;
    background-color: #2f3040;
}

#modal-login label {
    color: white;
    margin-bottom: 5px;
    font-weight: 500;
}

#modal-login h3 {
    color: white;
}

#modal-login .login-submit {
    text-align: right;
}

#modal-login input[type='submit']:not(.is-form) {
    text-transform: capitalize;
    color: #000;
    background-color: white;
}

#modal-login .check-box {
    font-size: 12px;
    margin-top: 15px;
    color: white;
}

#modal-login .check-box a {
    color: white;
    text-decoration: underline;
}

/* REGISTER MODAL (#modal-register) */
#modal-register {
    border-radius: 5px;
    background-color: #2f3040;
    color: white;
}

#modal-register label {
    color: white;
    margin-bottom: 5px;
    font-weight: 500;
}

#modal-register h3 {
    color: white;
}

#modal-register #register-submit {
    background-color: white;
    color: #000;
}

#modal-register .check-box {
    font-size: 12px;
    margin-top: 15px;
    color: white;
}

#modal-register .check-box a {
    color: white;
    text-decoration: underline;
}

/* SOCIAL LOGIN LOADER (Nextend) */

.social-loader .loader-container {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-loader .loader-logo {
    width: 175px;
    height: auto;
}

.social-loader .loader-circle {
    border: 4px solid #f1f1f1;
    border-top: 4px solid #262D3F;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: modal-spin 1s linear infinite;
}

#nsl-redirect-overlay-container {
    background-color: transparent !important;
}