/* Chrome, Edge, Opera */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px white inset !important; /* background */
  -webkit-text-fill-color: #000 !important; /* black text */
  transition: background-color 5000s ease-in-out 0s;
}

/* Firefox */
input:-moz-autofill {
  box-shadow: 0 0 0 1000px white inset !important;
  -moz-text-fill-color: #000 !important;
}




textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px white inset !important; /* background */
  -webkit-text-fill-color: #000 !important; /* black text */
  transition: background-color 5000s ease-in-out 0s;
}

/* Firefox */
textarea:-moz-autofill {
  box-shadow: 0 0 0 1000px white inset !important;
  -moz-text-fill-color: #000 !important;
}
