I'm attempting to have the white div appear on top of the grey div, rather than underneath it as shown in the screenshot.
https://i.sstatic.net/UYYOt.png
This layout is being built using Bootstrap 4.
.form-login {
text-align: center;
background: #ffffff;
border-radius: 25px;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
}
.biside-form-login {
text-align: left;
background: #cecece;
border-radius: 25px;
padding-left: 50px;
padding-right: 50px;
margin-left: -10px;
}
<div class="container h-100">
<div class="row h-100 justify-content-center align-items-center">
<div class="col-4 form-login">
this is the white div
</div>
<div class="col-8 biside-form-login">
this is the grey
</div>
</div>
</div>