/* iOS Safari zooms the page when a focused text-entry control renders below
   16 CSS pixels. Keep pinch zoom available and raise only editable controls at
   mobile/touch sizes instead of restricting the viewport. */
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  html body input:not([type="button"]):not([type="checkbox"]):not([type="color"]):not([type="file"]):not([type="hidden"]):not([type="image"]):not([type="radio"]):not([type="range"]):not([type="reset"]):not([type="submit"]),
  html body select,
  html body textarea,
  html body [contenteditable]:not([contenteditable="false"]) {
    font-size: 16px !important;
  }
}
