Can anyone tell me where the submit button is constructed?
We have for instance in login area only this code <button type="submit"><?php _e("Log in", 'modern');?></button>
which is complicated into
<div class="button" style="-moz-user-select: none;">
<span>
Log in
<button type="submit">Log in</button>
</span>
</div>
which in fact are 2 buttons and 1 has absolute position, outside of container
div.button a, div.button button, div.button input {
position: absolute;
top: -9999px;