@charset "UTF-8";
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  /*
   * El truco es usar un box-shadow que cubra el fondo del input.
   * El color del box-shadow debe coincidir con el color de fondo natural de tu input
   * cuando NO está autocompletado, y la opacidad debe ser muy baja o transparente.
   */
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0) inset; /* O el color de tu fondo actual */
  /*
   * Opcionalmente, puedes establecer un color de fondo con opacidad.
   * Esto puede funcionar en algunos casos, pero box-shadow es más fiable.
   */
  /* background-color: rgba(255, 255, 255, 0) !important; */
  /* Para que el texto mantenga el color que deseas */
  -webkit-text-fill-color: inherit; /* O el color específico de tu texto, ej. #333 */
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s; /* Esto evita la transición del color */
}