body.login { 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 100vh;
}
body.login::before { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    z-index: 0; 
    backdrop-filter: blur(8px); 
}
body.login.no-bg { 
    background: #f4f5f7; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 100vh; 
}
body.login.no-bg::before {
    display: none;
}
#login { 
    position: relative; 
    z-index: 1; 
    width: 320px !important; 
    padding: 40px !important; 
    background: #ffffff; 
    border-radius: 24px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
    border: 1px solid rgba(255,255,255,0.8); 
    margin: 0 !important; 
}
.login form { 
    background: transparent !important; 
    border: none !important; 
    box-shadow: none !important; 
    padding: 0 !important; 
    margin-top: 0 !important; 
}
.login label { 
    color: #1b182b !important; 
    font-weight: 600 !important; 
    font-size: 0.9rem !important; 
    margin-bottom: 8px !important; 
    display: block; 
}
.login form .forgetmenot { 
    float: none !important; 
    margin-bottom: 20px; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}
.login .message, .login #login_error { 
    border-radius: 12px; 
    background: #fff; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
}
.login input[type="text"], .login input[type="password"] { 
    border-radius: 12px; 
    padding: 14px 16px; 
    border: 1px solid #e5e7eb; 
    height: 45px; 
    box-shadow: none; 
    width: 100%; 
    font-size: 15px; 
    background: #f8fafc; 
    transition: all 0.2s ease; 
}
.login input[type="text"]:focus, .login input[type="password"]:focus { 
    outline: none; 
    background: #fff; 
}
.login input[type="checkbox"] { 
    border-radius: 4px; 
    border: 1px solid #d1d5db; 
    width: 18px; 
    height: 18px; 
    margin: 0; 
}
.login #wp-submit { 
    border: none !important; 
    text-shadow: none !important; 
    border-radius: 12px !important; 
    height: 50px !important; 
    font-size: 1rem !important; 
    font-weight: 600 !important; 
    width: 100% !important; 
    transition: all 0.3s ease !important; 
    float: none !important; 
    margin-top: 10px; 
}
.login #wp-submit:hover { 
    transform: translateY(-2px); 
    filter: brightness(1.1); 
    cursor: pointer; 
}
.login #nav { 
    text-align: center; 
    margin-top: 24px; 
    padding: 0; 
}
.login #nav a { 
    color: #64748b !important; 
    font-weight: 500; 
    transition: color 0.2s; 
    font-size: 0.9rem;
}
.login #nav a:hover { 
    text-decoration: none; 
}
.login #backtoblog { 
    display: none !important; 
}
body.login .language-switcher { 
    display: none !important; 
}
.pdc-login-admin-link { 
    text-align: center; 
    margin-top: 24px; 
    color: #64748b; 
    font-size: 0.9rem; 
    font-weight: 500; 
    border-top: 1px solid #f1f5f9; 
    padding-top: 24px; 
}
.pdc-login-admin-link a { 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.2s ease; 
}
.pdc-login-admin-link a:hover { 
    text-decoration: underline; 
    filter: brightness(0.9); 
}