I'm having trouble creating round borders for the second div within a simple 2 div setup.
Here is my code:
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" />
<div style="height: 100vh; background-color: #00aff0;" class="row align-items-center justify-content-center">
<div class="mh-100 row align-items-center justify-content-center" style="width: 90%; height: 100%;border-radius: 30px !important;overflow: hidden;">
<div class="col-lg-6 col-md-6 h-75" style="background-color: #b5ebff">
</div>
<div class="col-lg-6 col-md-6 h-75" style="background-color: white">
</div>
</div>
</div>