.req-asterisk {
    color: #4A7AD1 !important;
    font-weight: 700;
    margin-left: .25rem;
}

/* =========================
   EvaluaasiTraining · site.css
   Bloque: Modal de confirmación de correo
   (NO modifica tailwind.css generado)
   ========================= */

/* Token local para “morado oficial” (alineado a indigo-600 del build) */
:root {
    --et-purple: oklch(51.1% .262 276.966);
    --et-purple-hover: color-mix(in oklab, var(--et-purple) 95%, black);
    --et-shadow-rgb: 15 23 42; /* slate-900 aprox */
}

/* Overlay del modal */
.et-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 999;
}

/* Contenedor del modal (centrado) */
.et-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1rem;
    z-index: 1000;
}

/* Tarjeta del modal */
.et-modal-card {
    width: 100%;
    max-width: 28rem; /* ~max-w-md */
    background: #fff;
    border: 1px solid oklch(92.9% .013 255.508); /* slate-200 */
    border-radius: 1rem; /* ~rounded-2xl */
    padding: 1.5rem;
    box-shadow: 0 12px 40px rgba(var(--et-shadow-rgb) / 0.12);
}

/* Título y texto */
.et-modal-title {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: oklch(20.8% .042 265.755); /* slate-900 */
    margin: 0;
}

.et-modal-copy {
    margin-top: .5rem;
    font-size: .875rem; /* text-sm */
    line-height: 1.6;
    color: oklch(55.4% .046 257.417); /* slate-500 */
}

/* Acciones del modal */
.et-modal-actions {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .75rem;
}

/* Botón primario morado (CTA principal) */
.et-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .5rem 1rem; /* px-4 py-2 */
    border-radius: .75rem; /* rounded-md/rounded-[var(--radius-md)] proxy */
    font-weight: 500;
    font-size: .875rem; /* text-sm */
    background: var(--et-purple);
    color: #fff;
    box-shadow: 0 1px 2px rgba(0 0 0 / .06);
    transition: opacity .15s ease, box-shadow .15s ease;
    text-decoration: none;
}

    .et-btn-primary:hover {
        opacity: .95;
    }

    .et-btn-primary:active {
        opacity: .9;
    }

/* Enlace CTA (texto) */
.et-link-cta {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-weight: 500;
    font-size: .875rem; /* text-sm */
    color: var(--et-purple);
    text-decoration: underline;
    text-underline-offset: 2px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

    /* Estados de foco (accesibilidad) */
    .et-btn-primary:focus-visible,
    .et-link-cta:focus-visible,
    .et-modal-card:focus-visible {
        outline: none;
        box-shadow: 0 0 0 2px var(--et-purple), 0 0 0 4px #fff; /* ring-offset-white */
    }

/* ---------- Variantes utilitarias opcionales ---------- */

/* Separadores dentro del modal */
.et-space-y > * + * {
    margin-top: .75rem;
}

/* Alineación alternativa para acciones (centro) */
.et-modal-actions.center {
    justify-content: center;
}

/* Responsive afinado */
@media (min-width: 640px) {
    .et-modal-card {
        padding: 1.75rem;
    }
}