JSFiddle - React, Tailwind, and code Playground
HTML
<div><label id="lead" for="from">From: </label><input id="from" type="text" /></div>
CSS
div {
background-color: white;
border: 2px inset;
cursor: auto;
width: 250px;
}
label {
color: gray;
}
input, input[type="text"], input:focus {
border: none;
outline: none;
}