JSFiddle - React, Tailwind, and code Playground
by ihope
HTML
<label for="author">Nombre</label>
<input required="required" type="text">
CSS
input[type=text]{
background-color: #f2f2f2;
border:1px solid #ccc;
-webkit-transition: all .2s ease-out;
-moz-transition: all .2s ease-out;
-ms-transition: all .2s ease-out;
-o-transition: all .2s ease-out;
transition: all .2s ease-out
}
label:focus {
border-color: #777;
color: #000;
background: #ff0;
outline: 0
}