Here is a simple example to demonstrate.
<div class="container">
<div class="row">
<form class="col-12 form-group">
// some code
</form>
<div class="col-12">
// some text for description
</div>
</div>
</div>
In the code above, the columns are in the same row but can be separated like this:
<div class="container">
<div class="row">
<form class="col-12 form-group">
// some code
</form>
</div>
<div class="row">
<div class="col-12">
// some text for description
</div>
</div>
</div>
Will there be any difference?