/* iOS Safari automatically zooms focused editable controls below 16px. */
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  input:not([type]),
  input[type="date"],
  input[type="datetime-local"],
  input[type="email"],
  input[type="month"],
  input[type="number"],
  input[type="password"],
  input[type="search"],
  input[type="tel"],
  input[type="text"],
  input[type="time"],
  input[type="url"],
  input[type="week"],
  select,
  textarea,
  [contenteditable="true"] {
    font-size: 16px !important;
  }
}
