Here is an example of the code illustrating the issue I am facing:
<div class='body'>
<div class="container">
<div class="col-md-12">
<div class="col-md-6">
Content on Left
</div>
<div class="col-md-6">
Content on Right with a lot of text...
</div>
<div class="col-md-6">
More Content on Left
</div>
</div>
</div>
</div>
This is how it currently appears, and the layout in the screenshot is what I am trying to achieve fixing:
https://i.sstatic.net/DcoBY.png
In my application, I aim to have forms and buttons on one side, and data displayed on the other as shown here: https://i.sstatic.net/YGQWQ.png
The current layout is causing everything on the left side to be pushed down, creating a large gap between elements. How can I resolve this issue and maintain the separation of the two columns?