/*
 * Mobile Safari zooms the page when a focused form control has a computed
 * font size below 16px. Keep controls at that threshold on touch devices so
 * entering data does not change the page zoom.
 */
@media (hover: none) and (pointer: coarse) {
    input:not([type]),
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="search"],
    input[type="tel"],
    input[type="url"],
    input[type="number"],
    input[type="date"],
    input[type="datetime-local"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    textarea,
    select,
    [contenteditable="true"] {
        font-size: 16px !important;
    }
}
