/* To my knowledge this is not doable in tailwind. 
    The goal is to remove the background automatically set after the browser perform an autocomplete in an input
    credits: 
*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 999px #151515 inset !important;
  -webkit-text-fill-color: white !important;
}

html {
  scroll-behavior: smooth;
}
