JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="right"></div>
<div class="left">
<input type="text" class="text"/>
</div>
</div>
CSS
.container {
width:100%;
height:200px;
border:1px solid;
}
.left {
width:auto;
height:200px;
background:red;
overflow: hidden;
}
.right {
height:200px;
width:200px;
background:blue;
float:right;
}
.text{
width:100%;
height:20px;
}