/* CS PLUS MEDICAL v1.7.20.65 — mobile form focus stability.
 * iOS Safari auto-zooms focused controls when their computed font size is below 16px.
 * Keep form controls at >=16px on mobile/coarse-pointer devices so Web/PWA layouts
 * stay stable when users focus inputs. Desktop typography is intentionally untouched.
 */
@media screen and (max-width: 1024px), (hover: none) and (pointer: coarse) {
  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="url"],
  input[type="search"],
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"],
  input[type="week"],
  select,
  textarea {
    font-size: 16px !important;
  }
}
