JSFiddle - React, Tailwind, and code Playground

HTML

<div id="search">
    <input id="btnSeach" type="button" value="Search" /> 
    <label for="txtSearch">Search</label>
    <input type="text"  name="txtSearch" id="txtSearch" />
</div>

CSS

#search {
    display:table;
    width: 100%;
}

label {
    padding-right:10px;
}

input {
   display:table-cell; 
   width:95%;
}

label {
    display:table-cell; 
    width:50px ;
    font: 50px;
}