/* Global form unfill override:
   keep borders/typography from feature styles, but remove background fill. */
input,
textarea,
select,
.form-control {
  background: transparent !important;
  background-color: transparent !important;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.form-control:focus-visible {
  background: transparent !important;
  background-color: transparent !important;
}

/* Browser autofill paints its own background; force it transparent too. */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
}
