I currently have two buttons, but I am hiding one button by using the display: none property. Underneath this hidden button, there is another button that I would like to be positioned in the same place as the hidden button. How can I achieve this layout adjustment using CSS?
<input type="submit" value="{% trans "login" %}" style="display:none" />
<input type="submit" value="{% trans "login" %}" />