/* ogin.css */

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


#login h1 a {
    background-image: url('/app/uploads/2023/07/GS-Horizonal-Logo-gray-and-red-1.svg');
    background-size: contain;
    width: 100%;
    height: 80px;
    pointer-events: none; /* Disable the link */
}

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

.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 {
    background: #e0e2e1;
    color: #000;
    border-radius: .25rem;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-family: proxima-nova, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    text-align: center;
    text-transform: uppercase;
}

/* WP sometimes makes login buttons very large/full-width (ex: admin email verification screen).
   Force them back to a normal button size. */
.login .button.button-large,
.login input.button.button-large,
.login .button.button-primary,
.login input.button.button-primary {
    width: auto;
    min-height: 0;
    height: auto;
    line-height: 1.2;
    padding: 0.5rem 1rem;
}

.login .button:hover,
.login .button-primary:hover {
    background: #e11733;
    color: #fff;
}

.login .button:active,
.login .button:focus,
.login .button-primary:active,
.login .button-primary:focus {
    background: #e11733;
    color: #fff;
}


.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 #e11733;
}