/* ELFSIGHT FORM – WHITE TEXT + BLACK BUTTON TEXT (CLEAN) */

/* 1. Make ALL form text white (original working method) */
.eapps-form,
.eapps-form * {
  color: #ffffff !important;
}

/* 2. Inputs text */
.eapps-form input,
.eapps-form textarea,
.eapps-form select {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* 3. Placeholders */
.eapps-form input::placeholder,
.eapps-form textarea::placeholder {
  color: rgba(255,255,255,0.7) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.7) !important;
}

/* 4. FORCE BUTTON TEXT TO BLACK (working override) */
.eapps-form button,
.eapps-form [role="button"],
.eapps-form input[type="submit"],
.eapps-form button *,
.eapps-form [role="button"] * {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}
