/* ============================================================
   login.css – JACEMA
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ── Logo ─────────────────────────────────────────────────── */
.logo {
    text-align: center;
    margin-bottom: 1.8rem;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: 3px;
}

.logo p {
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Formulario ───────────────────────────────────────────── */
.form-group {
    margin-bottom: 1.2rem;
}

label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #222;
    background: #f9f9f9;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #1a1a2e;
    background: #fff;
}

/* ── Botón ────────────────────────────────────────────────── */
.btn {
    width: 100%;
    padding: 0.85rem;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.btn:hover:not(:disabled) { background: #2d2d5e; }
.btn:disabled { background: #aaa; cursor: not-allowed; }

/* ── Alertas ──────────────────────────────────────────────── */
.error {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
}

.lockout {
    text-align: center;
    font-size: 0.82rem;
    color: #b91c1c;
    margin-top: 1rem;
}

.security-note {
    text-align: center;
    font-size: 0.72rem;
    color: #aaa;
    margin-top: 1.5rem;
}
