/* ==================== AUTH.CSS ==================== */
/* Auth Layout (Login / Register / Recover Password) */
.auth-wrapper {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f6f8fc 0%, #e9edf5 100%);
}

.auth-card {
    background-color: var(--surface-color);
    width: 100%;
    max-width: 450px;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo img {
    max-height: 80px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .auth-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .auth-card { padding: 1.5rem 1rem; border-radius: .75rem; }
    .auth-title { font-size: 1.25rem; }
}

/* Blocked Layout (bloqueado.php) */
.blocked-wrapper {
    min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem;
    background: radial-gradient(ellipse at 30% 20%, rgba(99,102,241,.18) 0%, transparent 60%), radial-gradient(ellipse at 80% 80%, rgba(139,92,246,.14) 0%, transparent 55%), var(--bg-main);
}
.blocked-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 24px; padding: 3rem 2.5rem; max-width: 520px; width: 100%; text-align: center; box-shadow: 0 8px 40px rgba(0,0,0,.35); animation: fadeUp .5s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.blocked-icon { font-size: 4.5rem; margin-bottom: 1.25rem; display: block; filter: drop-shadow(0 4px 16px rgba(239,68,68,.4)); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.blocked-title { font-size: 1.6rem; font-weight: 800; color: var(--text-main); margin-bottom: .5rem; }
.blocked-name { color: var(--primary-color); }
.blocked-subtitle { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; }
.status-card { background: linear-gradient(135deg, rgba(239,68,68,.1), rgba(220,38,38,.07)); border: 1px solid rgba(239,68,68,.25); border-radius: 14px; padding: 1.25rem 1.5rem; margin-bottom: 2rem; text-align: left; }
.status-card-title { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #DC2626; margin-bottom: .75rem; }
.status-steps { list-style: none; margin: 0; padding: 0; }
.status-steps li { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: var(--text-main); padding: .4rem 0; border-bottom: 1px solid rgba(239,68,68,.1); }
.status-steps li:last-child { border-bottom: none; }
.step-icon { font-size: 1.1rem; flex-shrink: 0; }
.step-done { color: #10B981; }
.step-pending { color: var(--text-muted); }
.blocked-actions { display: flex; flex-direction: column; gap: .75rem; }
.btn-profile { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.5rem; border-radius: 12px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: #fff; font-weight: 600; font-size: .95rem; text-decoration: none; border: none; cursor: pointer; transition: opacity .2s, transform .15s; }
.btn-profile:hover { opacity: .9; transform: translateY(-1px); }
.btn-logout-blocked { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .75rem 1.5rem; border-radius: 12px; background: transparent; border: 1px solid var(--border-color); color: var(--text-muted); font-size: .9rem; text-decoration: none; cursor: pointer; transition: border-color .2s, color .2s; }
.btn-logout-blocked:hover { border-color: #EF4444; color: #EF4444; }
.blocked-logo { display: flex; align-items: center; justify-content: center; gap: .6rem; margin-bottom: 2rem; }
.blocked-logo img { height: 32px; }
.blocked-logo span { font-size: 1rem; font-weight: 700; color: var(--text-main); }
.auto-refresh-note { margin-top: 1.5rem; font-size: .78rem; color: var(--text-muted); }
.countdown { font-weight: 700; color: var(--primary-color); }
