Bootstrap 4.
<div class="form-group">
<label asp-for="Enabled" class="control-label"></label>
<input asp-for="Enabled" class="form-control" type="checkbox" />
<span asp-validation-for="Enabled" class="text-danger"></span>
</div>
I have designed a form where I want the checkbox to be positioned under the label "Enabled" instead of being centered like other full-width controls. You can view the form image here.
When I set the checkbox width to "auto," it aligns properly but displays a smaller checkbox, which is not the desired effect. You can see the difference in size in this image.
So my question is, how can I achieve a large, left-aligned checkbox on my form?