I have an input of typo password with span where is the bootstrap icon is misaligned, only buga with type password, type text works normally
<div class="panel-body">
<form class="form-signin" method="POST" action="valida_login.php">
<fieldset>
<div style="margin-bottom: 25px" class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span>
<input class="form-control" placeholder="Digite seu usuario.." name="usuario" type="text" required autofocus>
</div>
<div style="margin-bottom: 25px" class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-lock"></i></span>
<input class="form-control" placeholder="Digite sua senha.." name="senha" type="password" required autofocus>
</div>
<a class="text-center text-danger" href="" style="float: right; font-size: 12px">Esqueceu sua senha?</a>
<br><br>
<button class="btn btn-primary btn-block mb-10" type="submit" style="background-color: #027CC1; border: solid 1px #027CC1"><i class="fa fa-check"></i> Entrar</button>
</fieldset>
</form>
<p class="text-center text-danger">
<?php
if(isset($_SESSION['loginErro'])){
echo $_SESSION['loginErro'];
unset($_SESSION['loginErro']);
}
?>
</p>
</div>