HTML below
<div id="forms">
<form method="post" action="member.php?sel=create_account">
<h1>Create Your Free Account</h1>
<span>Enter your details below, all information remains private.</span>
<hr>
<fieldset>
<label for="username">Username:</label>
<input type="text" name="username" id="username" placeholder="Enter your full name" autofocus size="30" maxlength="30" />
<label for="password">Password:</label>
<input type="password" name="password" id="password" size="30" maxlength="30" />
<label for="email">Email Address:</label>
<input type="text" name="email" id="email" size="50" maxlength="50" />
</fieldset>
<input type="submit" name="register" id="register" value="Register" />
</form>
</div>
And the associated CSS
#forms input[type=submit] {
display: block;
width: 120px;
height: 30px;
padding: 5px 15px;
margin: 0, auto;
color: #374552;
border: 1px solid #556f8c;
background: -moz-linear-gradient(top, #8f99a3 0%, #adb3b9 100%); /* firefox */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8f99a3), color-stop(100%,#adb3b9)); /* webkit */
cursor: pointer;
}
No idea what is wrong here