/* Page background */
body.login {
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hide default WP logo */
#login h1 a {
    display: none !important;
}

/* Form card */
#lostpasswordform {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

/* Label styling */
.login label {
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

/* Input field */
#user_login {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

#user_login:focus {
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Submit button */
#wp-submit {
    background: #000000;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    padding: 10px 14px;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    width: 100%;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: background 0.2s;
}

#wp-submit:hover {
    background: #1a1a1a;
}

/* Cloudflare Turnstile success message */
.message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 12px 16px;
    margin: 20px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 12px;
}

.message::before {
    content: "✓";
    background: #22c55e;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.message {
display:none!important;
}

/* Hide unnecessary links */
#backtoblog,
#nav {
    display: none;
}