/* ogin.css */

body.login {
    background-color: #f0f0f0;
}

#login h1 a {
    background-image: url('/app/uploads/2023/05/logo-nav-1.png');
    background-size: contain;
    width: 100%;
    height: 80px;
    pointer-events: none; /* Disable the link */
}

.login #nav a:hover, .login #backtoblog a:hover {
    color: #1E4560;
}

.login form {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



.login .button, .login.button-primary {
    border-radius: 1.5rem;
    padding: 4px 16px;
    font-weight: bold;
    background-color: #95ad3d;
    border-color: #95ad3d;
    box-shadow: none;
    text-shadow: none;

    &:hover {
        
        background-color: #fff;
        color: #000419;
        border-color: a#95ad3d;

    }
    &:active, &:focus {
        color: #fff;
        background-color: #95ad3d;
        border-color: #95ad3d;
        box-shadow: none!important;
    }
}


.member-hidden {
    display: none;
}

.login-footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.login-footer svg {
    max-width: 100px; /* Adjust the size as needed */
    width: 100px; /* Ensure the width is set */
    height: auto; /* Maintain aspect ratio */
}

body.interim-login .login-footer,
    #wp-auth-check-form .login-footer {
        display: none!important;
}

.login .message, .login .notice, .login .success {
    border-left: 4px solid #242163;
}