.input {
  font-size: var(--font-size-sm);
  font-weight: 400;
  background-color: transparent;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-gray-300);
  padding: 0 0.75rem;
  height: 2.125rem;
}

.input--fill {
  width: 100%;
}
/* iOS zoom fix: font-size must be >= 16px on inputs */
@media (max-width: 699px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* Textarea: center placeholder vertically at default height (3 rows ≈ 72px) */
textarea.input {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  resize: vertical;
  line-height: 1.5;
}
