JSFiddle - React, Tailwind, and code Playground

HTML

<div class="wrapper">
  <div class="title">
    
  </div>
  <div class="low">
    
  </div>
  
  <div class="form">
    
  </div>
</div>

CSS

.wrapper{
  max-width: 800px;
  min-height: 500px;
  background-color: #ececec;
  margin: 0 auto;
  position: relative;
}

.title{
  width: 100%;
  min-height: 110px;
  background-color: #000;
  opacity: 0.69;
  top: 3%;
  position: absolute;
}

.low{
  width: 200px;
  height: 150px;
  background-color: #000;
  opacity: 0.69;
  position: absolute;
  bottom: 0;
  left: 0;
}

.form{
  w
}