/* custom-login.css */

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

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

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

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

.login .button-primary {
    border-radius: 1.5rem;
    padding: 4px 16px;
    background-color: #e95924;
    border-color: #e95924;
    box-shadow: none;
    text-shadow: none;
}

.login .button-primary:hover {
    background-color: #fff;
    color: #e95924;
    border-color: #e95924;
}

.field-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;
}