
/* Unify fonts for user-typed fields and bump by 10% */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="password"],
select,
textarea,
.input,
.select,
.textarea {
  font-size: 18px !important;
  font-family: inherit !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  color: inherit !important;
}

/* Specifically target the Issue/Problem description field by common selectors */
textarea[name="issue"],
textarea#issue,
textarea.issue,
#issue_desc,
[name*="issue" i],
[name*="problem" i],
[name*="description" i] {
  font-size: 18px !important;
  font-family: inherit !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  color: inherit !important;
}

/* Placeholders scale with field font size */
input::placeholder,
textarea::placeholder {
  font-size: 1em;
  color: #9ca3af; /* neutral placeholder */
}
