I am trying to center an input and a button on the same line within a div in the middle of the page. Currently, as shown in the image, they are aligned to the left of the page and I want them to be centralized. https://i.sstatic.net/o3RLs.png
<div class="row g-6 text-center">
<div class="col-md-4">
<input type="email" style="text-align:left" class="form-control pl-2 shadow-none">
</div>
<div class="col-auto">
<button class="btn btn-block btn-dark" type="submit">SUBSCRIBE NOW!</button>
</div>
</div>