form > #element {
	width: 430px;
	margin: 0 auto;
	clear: both;
	text-align: center;
}

form > #element > #label,
form > #element > input[type="text"],
form > #element > input[type="password"] {
	float: left;
	margin-bottom: 10px;
}

form > #element > #label {
	width: 200px;
	height: 25px;
	line-height: 25px;
	text-align: right;
	border-bottom: 1px solid #A6A6A6;
	-moz-border-radius: 10px 0 0 10px;
	border-radius: 10px 0 0 10px;
	margin-right: 10px;
}

form > #element > input[type="text"],
form > #element > input[type="password"],
form > #element > select {
	width: 200px;
	line-height: 23px;
	-moz-border-radius: 0 10px 10px 0;
	border-radius: 0 10px 10px 0;
	background: #FFFFFF;
	border: 1px solid #A6A6A6;
	padding: 0 5px;
}

form > #element > input[type="submit"] {
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #505050;
	border-left: none;
	border-top: none;
	border-right: 1px solid #606060;
	border-bottom: 1px solid #606060;
	padding: 3px 10px;
	color: #A6A6A6;
}

form > #element > input[type="submit"]:hover {
	background: #303030;
	border-right: 1px solid #404040;
	border-bottom: 1px solid #404040;
	-webkit-box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.8);
	-moz-box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.8);
	box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.8);
}