/* Prevent zooming on form elements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
    -webkit-text-size-adjust: 100%;
    -webkit-appearance: none;
    appearance: none;
}

/* Prevent zoom on focus */
input:focus,
textarea:focus,
select:focus {
    -webkit-text-size-adjust: 100%;
}

/* Prevent zoom on iOS */
@supports (-webkit-touch-callout: none) {
    input,
    textarea,
    select {
    }
}