Hello, I am currently working on integrating a captcha image into a Bootstrap 4 form as an input group item. It is functioning correctly, but there is an issue with a border around the image causing the input field to appear larger than the others. Below is the code snippet along with an attached picture for reference. Any help would be greatly appreciated.
<fieldset class="form-group">
Captcha
<div class="input-group">
<img class="input-group-addon img-fluid" src="<?php LinkGen::getLink("captcha.php"); ?>" style="margin:0;">
<input type="text" class="form-control" id="AntiSpamImage" name="AntiSpamImage" autocomplete="off" required />
</div>
</fieldset>