How can I position the first 2 inputs one below the other, but that they are aligned , which does not allow them to be aligned are the words on the left side.
.encima {
display: flex;
}
<div>
<div class="encima">
<div><span>nombre</span><input/></div>
<div><span>pass</span><input/></div>
</div>
</div>
<div>
<div class="encima">
<div><span>nombre2</span><input/></div>
</div>
</div>
I want to get this, but I can not get it