I need help aligning the icon with the text box and centering it within the container
I attempted a solution, but the icon ended up positioned above the text box
<div class="container d-flex justify-content-center" id="baseContainer">
<div class="row">
<input type="text" class="input-form col-sm-3 offset-sm-0" id="searchForm" placeholder="Search for a movie or series">
<i class="fa-solid fa-magnifying-glass col-sm" onclick="foo()"></i>
</div>
</div>
https://i.sstatic.net/eFzU0.png
If I remove the row and container div, the alignment is correct but not centered