JSFiddle - React, Tailwind, and code Playground
HTML
<div id="form1">
<input type="text" class="text-input" name="address" id="address" value="" size="23" maxlegnth="30" />
<input type="submit" value="BUTTON" id="btn-submit" />
</div>
CSS
.text-input
{
border:solid 1px #989898;
font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
background: #d8d8d8;
font-weight:bold;
color: #525252;
position:relative;
height: 23px;
}
#address{
text-align:right;
margin:0 30 0 auto;
}
#btn-submit{
border:1px solid #989898;
margin-left: -7px;
width:44px;
text-align:center;
height:25px;
}