/* Prevent iOS Safari and mobile browsers from auto-zooming form controls on focus.
   Keep viewport zoom available for accessibility; solve it by ensuring editable controls render at >=16px. */
@media (max-width: 1024px), (pointer: coarse) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="search"],
  input[type="url"],
  input[type="number"],
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"],
  input[type="week"],
  input:not([type]),
  select,
  textarea,
  [contenteditable="true"] {
    font-size: 16px !important;
  }
}
