I want to align a magnifying glass image next to a text input on the left side. However, it is currently displaying above the text input. How can I make sure they are positioned side-by-side using Bootstrap 5?
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="5c3e3333282f282e3d2c1c69726f726e">[email protected]</a>/dist/css/bootstrap.min.css" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<div class="container-fluid mt-3" style="background-color: white;">
<form method="GET" class="override-navbar-form col-sm-12" action="#">
<div class="row">
<div class="col">
</div>
<div class="col-sm-5 mx-auto">
<div class="text-black text-center">
<label for="query_text"></label>
<img style="max-height: 15px" src="/static/images/mag_glass.png" alt="">
<input type="text" id="query_text" name="query_text" value="{{ query_text }}" class="form-control" placeholder="Search...">
<br>
<br>
<button type="submit" class="search-button" style="margin-right: 5px" name="submit_type" value="search">Search</button>
</div>
</div>
<div class="col">
</div>
</div>
</form>
</div>