Schon besser.
Da ich sonntags nie Lust auf CSS hab, wieso stellst du die Anmeldeelemente nicht in einer Tabelle dar? Dann sieht das nicht so seltsam aus.
Zum Beispiel:
Code:
<form method="post" action="login.php">
<table>
<tr>
<td><label>Benutzername:</label></td>
<td><input name="username" type="text"></td>
</tr>
<tr>
<td><label>Passwort: </label></td>
<td><input name="userpass" type="password" id="userpass"></td>
</tr>
<tr>
<td></td>
<td><input name="login" type="submit" id="login" value="Einloggen"></td>
</tr>
</table>
</form>
statt
Code:
<form method="post" action="login.php">
<label>Benutzername:</label><input name="username" type="text">
<label>Passwort: </label><input name="userpass" type="password" id="userpass">
<input name="login" type="submit" id="login" value="Einloggen">
</form>
Dann sieht die Anmeldung doch gleich viel besser aus.