html, body {
	font-family: verdana;
	font-size: 14px;
	min-height: 100%;

	background: -moz-radial-gradient(center, ellipse cover,  rgba(255,255,255,0) 1%, rgba(170,170,170,0) 34%, rgba(0,0,0,0.3) 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(1%,rgba(255,255,255,0)), color-stop(34%,rgba(170,170,170,0)), color-stop(100%,rgba(0,0,0,0.3))); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,255,0) 1%,rgba(170,170,170,0) 34%,rgba(0,0,0,0.3) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  rgba(255,255,255,0) 1%,rgba(170,170,170,0) 34%,rgba(0,0,0,0.3) 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  rgba(255,255,255,0) 1%,rgba(170,170,170,0) 34%,rgba(0,0,0,0.3) 100%); /* IE10+ */
	background: radial-gradient(ellipse at center,  rgba(255,255,255,0) 1%,rgba(170,170,170,0) 34%,rgba(0,0,0,0.3) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#4d000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.login-wrapper {
	position:absolute; 
	top:50%;
	left: 50%;
	margin-top: -188px;
	margin-left: -150px;
	width: 300px;
	height: 376px;
	background-color: #4d4d4f;
	border-radius: 10px;
	padding: 20px;
}

.login-logo {
	height: 37px;
	margin-bottom: 20px;
}

.login-instructions {
	font-size: 12px;
	color: #FFF;
}

.login-error {
	text-align: center;
	color: #FFF;
}

.login-input-wrapper {
	position: relative;
	margin-top: 40px;
}

.login-input-icon {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 36px;
	height: 36px;
	font-size: 26px;
	text-align: center;
	color: #4d4d4f;
}

.login-input-wrapper input[type="text"], 
.login-input-wrapper input[type="password"] {
	border: 0px;
	padding: 10px 10px 10px 41px;
	background-color: #FFF;
	width: 249px;
	margin: 0px;
	border-radius: 5px;
}

.login-input-wrapper input:-webkit-autofill {
	background-color: #FFF !important;
}

.login-submit-wrapper {
	text-align: center;
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid #3f3e3e;
}

.login-submit-wrapper input[type="submit"] {
	background: url('/img/login-button.png');
	border: 0px;
	width: 262px;
	height: 31px;
	cursor: pointer;
}