/* ============================================================
   base.css — Reset global y estilos de body
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 13px;
}

body {
  background: var(--c-page);
  font-family: var(--ff-body);
  color: var(--c-text);
  min-height: 100vh;
  padding: 28px 20px 60px;
  /* Textura sutil de papel */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── Form card wrapper ──────────────────────────────────── */
.form-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--c-card);
  border: 1.5px solid var(--c-border-dark);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  overflow: visible;
}
