JSFiddle - React, Tailwind, and code Playground
HTML
<div class="form">
<input type="text" placeholder="Enter a query"><input type="submit" value="Найти" class="knopka">
</div>
CSS
.wrap{
width:700px;
margin:100px auto;
height:100%;
}
.form{
width:220px;
padding:5px;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border:1px solid #ccc;
}
.knopka{
background:#f1f1f1;
border:1px solid #ccc;
padding:3px 10px;
}