/*
 * =====================================
 * ZUREZU MOBILE INPUT ZOOM FIX
 * =====================================
 *
 * iOS Safari automatically zooms when a
 * form control with text smaller than
 * 16px receives focus.
 *
 * Keep desktop sizing unchanged, but use
 * at least 16px for editable controls on
 * mobile.
 */

@media (max-width: 768px) {

    input,
    textarea,
    select {
        font-size: 16px !important;
    }

}
