* {
  font-family: 'Inter', sans-serif !important;
}

html, body {
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
}

body {
  margin: 0;
  padding: 0;
  /* iOS notch / home indicator when content is full-bleed */
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  /* Evita zoom accidental al enfocar inputs en iOS si el font es ≥16px (MUI lo refuerza) */
  -webkit-text-size-adjust: 100%;
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
  height: 100dvh;
  min-height: 100dvh;
  box-sizing: border-box;
}

/* Inputs ≥16px en móvil: Safari no hace zoom automático */
@media (max-width: 899px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}
