JSFiddle - React, Tailwind, and code Playground

HTML

<div id="root" style="border:#04476F;border-color: #04476F; border-style: solid">      
  <div id="left_side" class="col-sm-6">   Some Text here.     
  </div>       
  <div id="right_side">    
    <input type="submit" class="col-sm-6" value="Submit your Request" />   
  </div>
</div>

CSS

#root {
   background-color: #eee;
   width:100%;
 }

#left_side {
  float: left;
  width:50%;
  position:relative;
  text-align:center;
}

#right_side {
  float: left;
  width: 50%;
  position:relative;
  text-align:center;
}