body {
	background-color: #333;
	color: #EEE;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 15px;
	max-width: 400px;
	margin: 1em;
}
hr {
	border: 0px;
	border-top: 1px solid #AAA;
	margin: 2em 0;
}

form {
	width: 100%;
}

form div {
	position: relative;
}

form div input[type="text"],
form div input[type="email"],
form div input[type="password"]
{
	margin: 1em;
	height: 2.5em;
	width: 15em;
	color: #333;
	font-size: 90%;
	font-family: "Courier New", Courier, monospace;
}
form div label {
	font-size: 90%;
	font-family: "Courier New", Courier, monospace;
	left: 17em;
	color: #EEE;
	font-weight: bold;
}


input[type=submit], button {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color: white;
	margin: 1em;
	height: 3em;
	width: 10em;
	font-size: 110%;
	background-color: #555;
	border: 2px solid #999;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
}
input[type=submit]:hover, button:hover {
	background-color: #777;
}
input[type=submit]:active, button:active {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background-color: #999;
}
