/*
 * iOS Safari zooms the page when a form control smaller than 16px receives
 * focus. Keep text-entry controls at its minimum readable size on mobile
 * WebKit without disabling the user's normal pinch-to-zoom accessibility.
 */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 849px) {
    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"]),
    select,
    textarea {
      font-size: 16px !important;
    }
  }
}
