/**
 * Prevent mobile browser zoom / input focus zoom site-wide.
 * Only text fields need 16px — do NOT force all buttons (breaks .bets-btn size).
 */
html {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* iOS Safari zooms focused fields when font-size < 16px */
input,
textarea,
select,
.ant-input,
.ant-input-lg,
.password-input,
.profile-code-row input,
.coupon-code-input,
.matka-input {
  font-size: 16px !important;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="search"],
textarea,
select {
  font-size: 16px !important;
}
