I've seen a few questions on this topic before, but I can't seem to make it work.
So I have a row with two columns inside and I want them to have the same height. I've tried using d-flex, but it just won't cooperate:
<div class="row d-flex align-items-center justify-content-center h-100">
<div class="col-12 col-md-6 col-xxl-4 ce-login__col">
<div class="ce-registration__form">
<form id="" class="">
<div class="ce-registration__form__top"></div>
<div class="ce-registration__form__bottom"></div>
</form>
</div>
</div>
<div class="col-12 col-md-6 col-xxl-4 ce-login__col">
<div class="ce-registration__form">
<form id="" class="">
<div class="ce-registration__form__top"></div>
<div class="ce-registration__form__bottom"></div>
</form>
</div>
</div>
</div>