I'm currently working on a form using Bootstrap 4, but I'm facing an issue where the columns are not aligning properly, causing unwanted space and reducing the size of the input boxes.
Despite trying different Bootstrap CSS CDN codes in addition to the downloaded ones, the problem persists.
<!------ Begin Description Section ------->
<div id="Description_details" class="container">
<div class="row">
<div class="step body current" id="trade-steps-p-2" role="tabpanel" aria-labelledby="" aria-hidden="false"
style="display: block;">
<fieldset class="trade">
<legend>What are you Buying?</legend>
<div class="form-group col-md-6 required" aria-required="true">
<label for="ContractName">Give Your Trade a Name
<a href="#" data-toggle="popover" data-trigger="hover" data-content=" data-original-title="" title="">
<i class=" fa fa-question-circle"></i>
</a>
</label>
<input name="data[Contract][name]" class="form-control" maxlength="50" type="text" id="ContractName"
required="required" aria-required="true" aria-invalid="false">
</div>
<div class="form-group col-md-6 required" aria-required="true">
<label for="">Industry Classification</label>
<select name="data[Contract][industry]" class="form-control" id="" required="required" aria-required="true"
aria-invalid="false">
<option value="GENERAL_GOODS_SERVICES" selected="selected">General Goods & Services</option>
<option value="AGRICULTURE_LIVESTOCK_GAME">Agriculture, Livestock & Game</option>
<option value="ART_ANTIQUES_COLLECTIBLES">Art, Antiques & Collectibles</option>
<option value="BUSINESS_SALE_BROKING">Business Sale & Broking</option>
<option value="VEHICLES_WATERCRAFT">Cars, Bikes & Watercraft</option>
<option value="CONSTRUCTION">Construction</option>
</select>
</div>
</div>
</div>
To ensure that the input areas align as col-md-6 on the left and right respectively.