body.login-body {
    font-family: 'Inter', sans-serif;
    background: #f5f7f8;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wrapper */
.login-wrapper {
    width: 100%;
    max-width: 460px;
    padding: 20px;
}

/* Card estilo Tailwind */
.login-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Header */
.login-header {
    margin-bottom: 28px;
}

.logo-text {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.subtitle {
    font-size: 14px;
    color: #64748b;
}

/* Labels */
.label {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 6px;
}

/* Inputs estilo moderno */
.custom-input {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding: 0 14px;
    transition: 0.2s;
}

.custom-input:focus {
    border-color: #0052cc;
    box-shadow: 0 0 0 2px rgba(0,82,204,0.15);
}

/* Botón */
.custom-btn {
    height: 48px;
    background: #0052cc;
    color: #f8fbff;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.2s;
}

.custom-btn:hover {
    background: #004bbd;
}

.custom-btn:hover,
.custom-btn:focus,
.custom-btn:active,
.custom-btn:focus-visible {
    color: #e1e1e2;
}

/* Error */
.error-box {
    background: #fee2e2;
    color: #991b1b;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 15px;
}

/* Footer */
.login-footer {
    margin-top: 30px;
}

.footer-text {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 4px;
}

/* Link azul (Request access) */
.footer-link-primary {
    color: #0052cc;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.footer-link-primary:hover {
    color: #003d99;
    transform: scale(1.06);
    opacity: 0.9;
    text-decoration: none;
}

/* Links pequeños */
.footer-links {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.2s;
}

.footer-link:hover {
    color: #475569;
}

.actia-swal-popup {
    font-family: 'Inter', sans-serif;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.actia-swal-title {
    color: #0f172a;
    font-weight: 700;
}

.actia-swal-text {
    color: #64748b;
    font-size: 14px;
}

.actia-swal-confirm {
    height: 48px;
    min-width: 140px;
    background: #0052cc;
    color: #f8fbff;
    font-weight: 600;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 8px;
    padding: 0 18px;
}

.actia-swal-confirm:hover {
    background: #004bbd;
}

.actia-swal-confirm:hover,
.actia-swal-confirm:focus,
.actia-swal-confirm:active,
.actia-swal-confirm:focus-visible {
    color: #f8fbff;
}