Preview:

The CSS part:
<style>
fieldset label{
cursor:pointer;
display:inline;
width:90px !important;
line-height:16px;
text-align:right;
}
input,textarea{
border-width:2px 1px 1px 2px;
font-size: 1em; font-weight:bold;
overflow:auto;
margin-left:5px;
}
</style>
The XHTML part:
<form>
<fieldset>
<legend>Login: </legend>
<label for="Login">Username: </label>
<input id="Login" name="login" maxlength="8" size="8" type="text" /> <br/>
<label for="Password">Password: </label>
<input id="Password" name="password" maxlength="8" size="8" type="password" /> <br/>
<input name="Submit" value="Submit" type="submit" />
</fieldset>
</form>
discuss this topic to forum
