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;
}
<input type="email" placeholder="valid mail" onkeyup="this.setAttribute('value', this.value);" value="" />
input:not([value=""]):not(:focus):invalid {
background-color: tomato;
}