/* Prevent iOS WebKit from applying unexpected native styles. */
input,
textarea,
select,
button {
  -webkit-appearance: none;
  appearance: none;
}

/* Keep typography from being auto-rescaled. */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Keep Bootstrap's intended corner radius and avoid iOS glow/shadow quirks. */
.form-control,
.form-select,
.btn {
  border-radius: var(--bs-border-radius);
  box-shadow: none;
}
