I have attempted various solutions provided in previous responses, but none have proven effective for my situation. The challenge I face is aligning the bar vertically within this form.
<form action="index?q=<?php echo $_POST['query']?>">
<div class="input-group mb-3" >
<input name="query" type="text" class="form-control" style="padding-bottom: 2.4em;">
<div class="input-group-append">
<button class="btn btn-outline-secondary" id="barra_navagacion_boton" type="submit"><i
id="Boton_Buscar"><img src="./img/search.png"
style="width:2em;max-width: 100%;"></i></button>
</div>
</form>
https://i.sstatic.net/4ry2g.png
<input name="query" type="text" class="form-control" style="padding-bottom: 2.4em; vertical-align:middle;">
Experimenting with the mentioned line resulted in success when removing the padding, however, it did not work when both lines were included. Any suggestions on how to proceed? Thank you!