/**
 * Alonsso Invitaciones — Index / Login CSS
 * Estilos exclusivos de index.php
 * Requiere: /src/styles.css
 */

 /* ── FONDO DE LA PÁGINA ── */
body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #f2ede8;
    color: #1a1a1a;
    min-height: 100vh;
}

/* ── CARD DE LOGIN ── */
.login-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

/* ── HEADER DEL CARD ── */
.login-header {
    background: #1a0f10;
    padding: 36px 32px 28px;
    text-align: center;
}

.login-header .marca {
    font-size: 22px;
    letter-spacing: 5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}

.login-header .sub {
    font-size: 11px;
    color: #c9a96e;
    letter-spacing: 2px;
    margin-top: 6px;
    text-transform: uppercase;
}

/* ── CUERPO DEL CARD ── */
.login-body {
    padding: 32px;
}

/* ── MENSAJES DE ERROR ── */
.error-msg {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 18px;
}

/* ── CAMPO HONEYPOT ANTI-BOT ── */
.campo-trampa {
    display: none !important;
}

/* ── BOTÓN DE LOGIN ── */
.btn-login {
    width: 100%;
    padding: 13px;
    background: #1a0f10;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    margin-top: 8px;
}

.btn-login:hover  { background: #2d1a1c; }
.btn-login:active { background: #0f080a; }

/* ── FOOTER DEL CARD ── */
.login-footer {
    text-align: center;
    padding: 0 32px 28px;
}

.login-footer p {
    font-size: 11px;
    color: #bbb;
}

/* ── BADGE DE RECAPTCHA ── */
.grecaptcha-badge { visibility: hidden; }