/**
 * auth/register.css — Estilos específicos da tela de registro
 *
 * Componentes reutilizáveis (.campo, .btn-skew, .check-box, .radio-card)
 * já estão em rv-components.css.
 * Efeito body::before (.rv-glow-red) já está em rv-effects.css.
 */

/* ── Step wizard animation ─────────────────────────────────── */
.step              { display: none; }
.step.active       { display: block; animation: slideIn .28s cubic-bezier(.16,1,.3,1) forwards; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── SVG inline fix ────────────────────────────────────────── */
svg:not(.hidden) { display: inline-block !important; vertical-align: middle; }

/* ── Base font-size override ───────────────────────────────── */
html { font-size: max(11px, 0.688rem); }
