Can someone help me align the height of the alert box with the input field? I've tried using Bootstrap classes but can't seem to get it right.
I attempted using col-mb-4 in the alert class, but the height alignment is still off.
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="096b66667d7a7d7d7b6879493c273b273a">[email protected]</a>/dist/css/bootstrap.min.css" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<div class="container-fluid">
<div class="mb-3 row">
<label for="inputCompanyName" class="col-form-label col-2">Company :</label>
<div class="col-5">
<input type="text" class="form-control" id="inputCompanyName" placeholder="" formControlName="companyName" />
</div>
<div class="col-4 alert alert-danger" role="alert" *ngIf="companyNameVal.errors?.['required'] && companyNameVal.touched">
Company name is required!
</div>
</div>
</div>