JSFiddle - React, Tailwind, and code Playground

HTML

<input type="email" placeholder="valid mail" onkeyup="this.setAttribute('value', this.value);" value="" />

CSS

input:not([value=""]):not(:focus):invalid {
  background-color: tomato;
}