/*
 * iOS Safari zooms focused form controls when their computed font size is
 * smaller than 16px. Keep text-entry controls at the native-safe size while
 * leaving buttons, uploads, checkboxes, and radio controls unchanged.
 */
@supports (-webkit-touch-callout: none) {
    @media screen and (max-width: 768px) {
        input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
        select,
        textarea {
            font-size: 16px !important;
        }
    }
}
