/* WPForms – wymuszenie widocznego tekstu podczas pisania (focus) */
.wpforms-container .wpforms-field input,
.wpforms-container .wpforms-field textarea,
.wpforms-container .wpforms-field select {
  color: #111 !important;
}

.wpforms-container .wpforms-field input:focus,
.wpforms-container .wpforms-field textarea:focus,
.wpforms-container .wpforms-field select:focus {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important; /* ważne m.in. dla Chrome/Safari/autofill */
}

/* Jeśli problem dotyczy autouzupełniania przeglądarki */
.wpforms-container input:-webkit-autofill,
.wpforms-container input:-webkit-autofill:focus {
  -webkit-text-fill-color: #111 !important;
}

