/* Change the background */
body.login {
    background-image: 
        url('/wp-content/uploads/2026/04/jennifer-login-page-2.png'), 
        linear-gradient(334deg, rgba(201, 162, 77, 1) 0%, rgba(247, 246, 243, 1) 100%);
    background-size: contain, cover;
    background-position: right, center;
    background-repeat: no-repeat;
    color: #2a2a2e;
    background-attachment: fixed; 
    
}
#login {
    margin: 0 !important;
    margin-left: 20% !important;
}
/* Change the logo */
/* Targeted selectors for modern WordPress versions */
#login h1 a, .login h1 a, .login .wp-login-logo a {
    background-image: url('/wp-content/uploads/2026/04/indulgencestudio-logo-bk.png') !important;
    background-size: contain !important;
    background-position: center top !important;
    width: 100% !important;
    height: 100px !important; /* Adjust height based on your logo shape */
    margin-bottom: 20px !important;
}
#login p#nav a, .wp-core-ui .button-primary{
    display: inline-block !important;
    color: #0f0f12 !important;
    border: 1px solid #0f0f12;
    font-weight: bold !important;
    text-transform: uppercase !important;
    padding: 15px 11px !important;
    background: transparent !important;
    border-radius: 0px !important;
    line-height: 1.5 !important;
}
#login p#nav a:hover, .wp-core-ui .button-primary:hover{
    background-color: #0f0f12 !important;
    color: #FFF !important;
    border: 1px solid #0f0f12;
}

.login form {
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);border: 1px solid #0f0f12;
    border: 1px solid #0f0f12;
}
.login .message, .login .notice, .login .success {
    border-left: 2px solid #0f0f12 !important;
}

#login_error a{
    color: #9e7c3a !important;
}

p#backtoblog a{
    color: #2a2a2e !important;
}

/* This hides the separator by making the text transparent 
           while keeping the links visible */
        .login #nav {
            color: transparent !important;
        }
        
        /* This ensures the actual links stay visible and 
           inherit your desired brand color */
        .login #nav a {
            color: #000 !important; /* Matches your previous black button branding */
            display: inline-block;
        }
        
/* Style the login form container */
.login form {
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.login .language-switcher{
    display: none;
}

input[type=checkbox]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime-local]:focus, input[type=datetime]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=password]:focus, input[type=radio]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus {
    border-color: #0f0f12;
    box-shadow: 0 0 0 1px #0f0f12;
    outline: 2px solid transparent;
}

wp-core-ui .button, .wp-core-ui .button-secondary {
    color: #0f0f12;
    border-color: #0f0f12;
    background: none;
    vertical-align: top;
}