I have the following code
body {}
.PrincipalForm {
margin: 0 auto;
border: 1px solid #666666;
width: 310px;
height: 600px;
}
.TblLogin {
margin: 0 auto;
}
#usuario {
width: 150px;
}
#password {
width: 150px;
}
#Aceptar {
width: 150px;
}
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<link rel="stylesheet" href="css/estiloLogin.css" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
</head>
<body>
<form class="PrincipalForm">
<table class="TblLogin">
<tr>
<label>Usuario:</label>
</tr><br>
<tr>
<input type="text" id="usuario">
</tr><br>
<tr>
<label>Password:</label>
</tr><br>
<tr>
<input type="password" id="password">
</tr><br>
<tr>
<button type="button" id="Aceptar">Aceptar</button>
</tr><br>
</form>
</body>
</html>