/*
 * Safari on iOS zooms focused form controls whose computed font size is under
 * 16px. Keep mobile controls at that threshold without disabling user zoom.
 */
@media screen and (max-width: 1024px) {
    html body input:not([type]),
    html body input[type="text"],
    html body input[type="password"],
    html body input[type="email"],
    html body input[type="number"],
    html body input[type="search"],
    html body input[type="tel"],
    html body input[type="url"],
    html body input[type="date"],
    html body input[type="datetime-local"],
    html body input[type="month"],
    html body input[type="time"],
    html body input[type="week"],
    html body select,
    html body textarea,
    html body [contenteditable="true"] {
        font-size: 16px !important;
    }
}
