/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

form#front-login *:disabled {
    background-color: dimgrey;
    color: linen;
    opacity: 0.5;
}

form#front-login {
    display: none;
    background: #FFFFFF;
    position: fixed;
    padding: 25px 25px 25px 25px;
    max-width: 650px;
    width: 500px;
    z-index: 99999;
    left: 50%;
    margin: auto;
    top: 140px;
    transform: translate(-50%, 0%);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 3px 6px rgb(0 0 0 / 5%);
}


form#front-login input[type="text"],
form#front-login input[type="submit"],
form#front-login input[type="password"] {
    width: 100%;
    margin-bottom: 12px;
}

form#front-login input[type="submit"] {
    padding: 12px;
    margin-top: 12px;
    background-color: #0a129b;
    color: white;
}

form#front-login input[type="submit"]:hover {
    background-color: #0a12cf;
}

form#front-login p {
    margin: 0;
}

form#front-login p.status,
form#front-login p.notice {
    margin-bottom: 16px;
}

form#front-login .back-link {
    margin-top: 20px;
}

form#front-login .back-link a {
    text-decoration: none;
}

form#front-login h1 {
    margin-bottom: 20px;
    margin-top: 0;
}

.login_overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(10, 17, 131, 0.8);
    opacity: 0.75;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99998;
}

form#front-login #ls-submit {
    position: relative;
}

#ls_password_reset_status {
    color: #df1318;
}

.loader {
    display: none;
    width: 22px;
    height: 22px;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: 22px;
    left: 10px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 600px) {
    form#front-login {
        position: absolute;
        max-width: none;
        z-index: 99999;
        left: 2%;
        top: 15%;
        right: 2%;
        width: auto;
        transform: none;
    }
}
