/* 1. Apply to all form inputs and text */
#contactForm,
#contactForm input,
#contactForm select,
#contactForm textarea {
  font-weight: 300; /* lighter */
  color: #6a6a6a;   /* soft gray */
}

/* 2. Lighten placeholders */
input::placeholder,
textarea::placeholder,
select option,
select option[disabled] {
  color: #aaaaaa;
  font-weight: 300;
}

/* 3. Override font-weight in inputs (was bold) */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-weight: 300 !important;
  color: #6a6a6a !important;
}

/* 4. Optional: Make button text match font style */
button {
  font-weight: 500;
}
