JSFiddle - React, Tailwind, and code Playground

HTML

<div class="box">
    <input type="text" name="name" value="" class="field">
</div

CSS

.box { padding : 50px; }
.field {
	-moz-box-shadow: inset 0px 1px 4px 1px #929292;
	box-shadow: inset 0px 1px 2px 1px rgba(0, 0, 0, 0.3), inset 0px -1px 1px 1px rgba(0, 0, 0, 0.2);
	width: 277px;
	height: 18px;
	border-top: 0;
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
	border-radius: 4px;
	-moz-border-radius: 3px;
	outline: none;
	padding: 6px 8px;
	font-size: 13px;
	line-height: 16px;
	color: #333;
}