/* ── Body ─────────────────────────────────────────────────────────────────── */
body.login {
    background: #f5f7fb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body.login::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #e8f2ff 0%, #f5f7fb 60%);
    z-index: -1;
}

/* ── Logo (reemplaza WP logo) ─────────────────────────────────────────────── */
#login h1 a,
.login h1 a {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 200px !important;
    height: 60px !important;
    margin: 0 auto;
    display: block;
}

#login h1,
.login h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* ── Contenedor ───────────────────────────────────────────────────────────── */
#login {
    padding: 20px 0 60px;
    width: 360px;
}

/* ── Card del formulario ──────────────────────────────────────────────────── */
#loginform,
#lostpasswordform,
#registerform,
#resetpassform,
.user-pass-wrap {
    background: #ffffff;
    border: 1px solid #e2e8f0!important;
    border-radius: 20px!important;
    box-shadow: none!important;
    padding: 32px 28px!important;
    margin-top: 0!important;
}

/* ── Labels ───────────────────────────────────────────────────────────────── */
.login label {
    font-size: 0.8rem!important;
    font-weight: 600!important;
    color: #475569!important;
    letter-spacing: .01em;
}

/* ── Inputs ───────────────────────────────────────────────────────────────── */
.login input[type="text"],
.login input[type="password"],
.login input[type="email"] {
    background: #fafafa!important;
    border: 1px solid #d1d9e0!important;
    border-radius: 8px!important;
    box-shadow: none!important;
    padding: 10px 14px!important;
    font-size: 0.95rem!important;
    color: #1a1a2e!important;
    height: auto!important;
    line-height: 1.5!important;
    transition: border-color .15s;
}
.login input[type="text"]:focus,
.login input[type="password"]:focus,
.login input[type="email"]:focus {
    border-color: #007FFF!important;
    background: #fff!important;
    box-shadow: none!important;
    outline: none!important;
}

/* ── Botón principal ──────────────────────────────────────────────────────── */
.login .button-primary,
#wp-submit {
    background: #FF8732!important;
    border: none!important;
    border-radius: 8px!important;
    box-shadow: none!important;
    text-shadow: none!important;
    font-size: 0.95rem!important;
    font-weight: 700!important;
    padding: 11px 20px!important;
    height: auto!important;
    width: 100%;
    cursor: pointer;
    transition: background .15s!important;
    letter-spacing: .01em;
}
.login .button-primary:hover,
#wp-submit:hover {
    background: #E06A1A!important;
    border: none!important;
    box-shadow: none!important;
}
.login .button-primary:focus,
#wp-submit:focus {
    box-shadow: 0 0 0 3px rgba(255,135,50,.3)!important;
    border: none!important;
    outline: none!important;
}

/* ── Links ────────────────────────────────────────────────────────────────── */
.login #nav a,
.login #backtoblog a {
    color: #007FFF!important;
    font-size: 0.82rem;
    text-decoration: none;
}
.login #nav a:hover,
.login #backtoblog a:hover {
    color: #005FCC!important;
    text-decoration: underline;
}

/* ── Checkbox "Recuérdame" ────────────────────────────────────────────────── */
.login .forgetmenot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem!important;
    color: #64748b!important;
}
.login .forgetmenot input[type="checkbox"] {
    accent-color: #007FFF;
    width: 15px;
    height: 15px;
}

/* ── Nav y back-to-blog ───────────────────────────────────────────────────── */
#login #nav,
#login #backtoblog {
    text-align: center;
    padding: 12px 0 0;
}
#login #backtoblog {
    border-top: 1px solid #f1f5f9;
    margin-top: 4px;
    padding-top: 14px;
}

/* ── Mensajes de error y éxito ────────────────────────────────────────────── */
.login .message,
.login .success {
    background: #f0fdf4!important;
    border-left: 4px solid #22c55e!important;
    border-radius: 8px!important;
    box-shadow: none!important;
    color: #15803d!important;
    font-size: .875rem;
}
.login .notice-error,
#login_error {
    background: #fff5f5!important;
    border-left: 4px solid #dc3545!important;
    border-radius: 8px!important;
    box-shadow: none!important;
    color: #dc3545!important;
    font-size: .875rem;
}

/* ── Badge de marca al pie ────────────────────────────────────────────────── */
#login::after {
    content: 'Sistemas Elche · ERP para negocios pequeños';
    display: block;
    text-align: center;
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 20px;
    letter-spacing: .02em;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 400px) {
    #login { width: 94%!important; }
}
