JSFiddle - React, Tailwind, and code Playground
HTML
<form>
<input class="green" type="text">
<input class="none" type="text">
<input type="submit">
</form>
CSS
input:focus{
background: yellow;
}
input.green:focus{
border: 3px solid #40FF00;
}
input.none:focus{
border: none;
}