/* ============================================================
   WordPress Login Page — Branded Styles
   ============================================================ */

/* Page background */
body.login {
    background: #f0f4f8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Replace the WP logo with site name text */
#login h1 a {
    background-image: none !important;
    background-color: #1a3c6e;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #f0a500;
    text-indent: 0;
    margin: 0 auto 24px;
    box-shadow: 0 4px 16px rgba(26,60,110,0.3);
}
/* Show initials "SS" in the logo circle — override WP's default */
#login h1 a::before {
    content: 'SS';
    color: #f0a500;
    font-size: 22px;
    font-weight: 800;
}

/* Login form card */
#loginform,
#lostpasswordform,
#registerform {
    background: #fff;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1) !important;
    padding: 28px 32px !important;
}

/* Labels */
#loginform label,
#lostpasswordform label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

/* Inputs */
#loginform input[type="text"],
#loginform input[type="password"],
#loginform input[type="email"],
#lostpasswordform input[type="text"] {
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
    box-shadow: none !important;
    transition: border-color 0.15s;
}
#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus {
    border-color: #185FA5 !important;
    box-shadow: 0 0 0 2px rgba(24,95,165,0.15) !important;
    outline: none;
}

/* Submit button */
#loginform .button-primary,
#lostpasswordform .button-primary {
    background: #1a3c6e !important;
    border-color: #1a3c6e !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    height: auto !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: background 0.15s !important;
    width: 100%;
}
#loginform .button-primary:hover,
#lostpasswordform .button-primary:hover {
    background: #185FA5 !important;
    border-color: #185FA5 !important;
}

/* Links below the form */
#nav, #backtoblog {
    text-align: center;
    font-size: 13px;
}
#nav a, #backtoblog a {
    color: #185FA5 !important;
}
#nav a:hover, #backtoblog a:hover {
    color: #1a3c6e !important;
    text-decoration: underline;
}

/* "Remember me" checkbox */
#loginform .forgetmenot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

/* The login container width */
#login {
    width: 360px;
    padding: 8% 0 0;
}
