/* Login Page Styles */
body.login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#login {
    width: 400px;
    padding: 0;
    margin: 0;
}

#loginform {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 40px;
    border: none;
}

#login h1 {
    text-align: center;
    margin-bottom: 30px;
}

#login h1 a {
    color: #2563eb;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.login label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.login input[type="text"],
.login input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.2s;
}

.login input[type="text"]:focus,
.login input[type="password"]:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#wp-submit {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
}

#wp-submit:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.forgetmenot {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.forgetmenot input[type="checkbox"] {
    margin-right: 8px;
}

#nav,
#backtoblog {
    text-align: center;
    margin-top: 20px;
}

#nav a,
#backtoblog a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

#nav a:hover,
#backtoblog a:hover {
    text-decoration: underline;
}

.message {
    background: #dbeafe;
    border: 1px solid #93c5fd;
    color: #1e40af;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Privacy Policy Link */
.privacy-policy-page-link {
    text-align: center;
    margin-top: 20px;
}

.privacy-policy-page-link a {
    color: white;
    text-decoration: none;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 480px) {
    #login {
        width: 90%;
        max-width: 400px;
    }
    
    #loginform {
        padding: 30px 20px;
    }
}