I have this HTML
and I would like every input
to be on separate lines, in this case below that I had 3 rows, one for each input
.
*{
margin: 0px;
padding: 0px;
background-color: #ccc;
font-family: 'Arial';
font-size: 16px;
color: #1C1C1C;
line-height: 1.5;
}
.log-adm{
background-color: #000;
text-align: center;
}
.log-adm-campos{
width: 200px;
}
<form action="" method="post" name="loguin" class="log-adm">
<input type="text" name="usuario" placeholder="Usuário" required="required" class="log-adm-campos">
<input type="password" name="senha" placeholder="Senha" required="required" class="log-adm-campos">
<input type="submit">
</form>