JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
    <input type="text" />
    <div class="filler"></div>
</div>

CSS

div.container {
    padding: 5px;
    border: 1px solid black;
    background-color: gray;
}

div.filler {
    background-color: red;
    height: 5px;
}

input {
    display: block;
}