/**
 * [모바일 폼]
 * - 역할: iOS가 16px 미만 입력에 포커스 시 화면을 확대하지 않게 함
 * - 작성/수정일: 2026-09-14
 */

@media (max-width: 767.98px) {
  html body input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="image"]):not([type="range"]):not([type="color"]),
  html body select,
  html body textarea {
    font-size: 16px !important;
  }

  /* [모바일 폼] 캡차 입력은 ID 특이도가 높아 별도 지정 / 2026-09-14 */
  #captcha.captcha:not(.recaptcha):not(.invisible_recaptcha) #captcha_key {
    font-size: 16px !important;
  }
}
