/**
 * Prevent iOS Safari (and similar) from auto-zooming when focusing form fields.
 * Safari zooms if the computed font-size of an input/textarea/select is below 16px.
 */
@media screen and (max-width: 1024px) {
    input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="image"]):not([type="color"]),
    textarea,
    select {
        font-size: 16px !important;
    }
}
