JSFiddle - React, Tailwind, and code Playground
HTML
<form>
<p>
<input type="text" placeholder="What is name of yah' burger?" autofocus required/>
</p>
<p>
<input type="submit" value="Can I haz cheeseburger?" />
</p>
</form>
CSS
input {
width: 400px;
height: 30px;
line-height: 30px;
font-size: 15px;
padding: 0px;
margin: 0px;
border: 1px solid black;
}