/* Make all text inside form white */
* {
  color: #ffffff !important;
}

/* Specifically target form elements */
input,
textarea,
select,
label,
button,
span,
div {
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* Placeholder text */
::placeholder {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Optional: Background transparency for better contrast */
input,
textarea,
select {
  background-color: transparent !important;
}
