/**
 * iOS Safari auto-zooms the page when focusing form fields with font-size < 16px.
 * Bump interactive fields to at least 16px on WebKit touch devices only.
 */
@supports (-webkit-touch-callout: none) {
	input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="range"]):not([type="color"]):not([type="image"]):not([type="button"]):not([type="submit"]):not([type="reset"]),
	textarea,
	select {
		font-size: max(16px, 1em) !important;
	}
}
