I've encountered an issue with the form-group class in Bootstrap.
You can view the problem on this link.
After analyzing the problem, I found that when viewing the code on a small or medium-sized device, the space between "Statut" and "Etat" appears smaller because I'm not using the form-group class.
You can see the difference here: https://i.sstatic.net/iefSD.png
However, on a medium or large device, the display is as expected.
Here is the result seen on a medium/large device: https://i.sstatic.net/ceZKu.png
When I insert
<div class="form-group">
between "statut" and "etat", there is additional spacing added by the form-group class (a margin-bottom of 15px).
You can see the updated code and result here: link
However, in this case, the layout on medium and large devices shows an extra line. How can I fix this issue? It seems like I might be misusing a CSS class.
You can refer to the screenshot for better understanding: https://i.sstatic.net/xhHX9.png