JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" />

CSS

input[type="text"] {
    outline: none;
    border-radius: 5px;
    border: 1px solid gray;
}   
input[type="text"]:focus {
    box-shadow: 0 0 3px blue;
}