I need help positioning the text input and button side by side, with a margin of about 10px between them.
The code I have right now is producing the result shown in the attached photo.
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="row">
<div class="float-left">
<input type="number" class="form-control item_page_item_db w-50" id="quantity<?php echo intval($kat['termek_id']); ?>" value="1">
</div>
<div class="float-left">
<button class="btn btn-outline-secondary add_to_cart_button" data-product-id="<?php echo intval($kat['termek_id']); ?>" type="button"><i class="fa fa-shopping-basket" aria-hidden="true"></i> Add to Cart
</button>
</div>
<div class="clearfix"></div>
</div>
https://i.sstatic.net/VJ9RE.jpg
I am looking to adjust the positioning of the input and button elements to be closer together and vertically centered properly. Currently, they lack CSS styling for size and only have colors and font size applied.