Hey there! I've encountered an issue with my login form using bootstrap 4. I have set up two col-md-6
columns in a row for "Remember Me" and "Forgot Password", but on mobile devices, the "Forgot Password" section jumps down from the row. Can anyone shed some light on why this might be happening? Thanks in advance!
Check out the screenshot here:
https://i.sstatic.net/NIbUi.png
<div class="row">
<div class="col-md-6 text-left">
<label class="custom-control custom-checkbox custom-control-inline">
<input type="checkbox" checked="" class="custom-control-input"><span class="custom-control-label">Remember me</span>
</label>
</div>
<div class="col-md-6 text-right">
<a href="#" class="text-primary">forgot password?</a>
</div>
</div>