.login {
	background: #eee;
	font-family: Arial;	
}

@keyframes myfirst
{
from {margin-top: -300px; opacity:0;}
to {margin-top: -120px; opacity: 1;}
}

@-webkit-keyframes myfirst /* Safari and Chrome */
{
from {margin-top: -300px; opacity:0;}
to {margin-top: -120px; opacity: 1;}
}

.login form {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -150px;
	margin-top: -120px;
	width: 300px;
	padding: 0px;
	background: white;
	border-radius: 5px;
	box-shadow: 0px 3px 35px rgba(0,0,0,0.3);
	overflow: hidden;	
	border: 1px solid #a0a5aa;
	animation: myfirst 0.5s;
	-webkit-animation: myfirst 0.5s; /* Safari and Chrome */
	animation-timing-function: ease-in;
	-webkit-animation-timing-function: ease-in;
}

.login h1 {
	background: #eaeced; /* Old browsers */
	background: -moz-linear-gradient(top,  #eaeced 0%, #d2d8de 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeced), color-stop(100%,#d2d8de)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #eaeced 0%,#d2d8de 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #eaeced 0%,#d2d8de 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #eaeced 0%,#d2d8de 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #eaeced 0%,#d2d8de 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeced', endColorstr='#d2d8de',GradientType=0 ); /* IE6-9 */
	border-bottom: 1px solid #a0a5aa;
	margin:0;
	font-size: 18px;
	line-height: 50px;
	padding: 0px 20px;
}

.form-body {
	padding: 20px;
}

.login input {
	width: 99%;
	border: 1px solid #a4a6a6;
	border-radius: 5px;
	padding:10px;
	box-shadow: inset 0px 1px 5px rgba(0,0,0,0.3);
	color: #696969;
}

.login button {
	box-shadow:inset 0px 1px 0px 0px #bbe75e;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a6d24c), color-stop(1, #7aa525) );
	background:-moz-linear-gradient( center top, #a6d24c 5%, #7aa525 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6d24c', endColorstr='#7aa525');
	background-color:#a6d24c;
	border-radius: 5px;
	border:1px solid #577d09;
	display:inline-block;
	color:#ffffff;
	font-size:15px;
	font-weight:bold;
	font-style:normal;
	height:42px;
	line-height:42px;
	width:99%;
	text-align:center;
	text-shadow:0px 1px 0px #577d09;
	margin-top: 15px;
	cursor: pointer;
}

.login button:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #7aa525), color-stop(1, #a6d24c) );
	background:-moz-linear-gradient( center top, #7aa525 5%, #a6d24c 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7aa525', endColorstr='#a6d24c');
	background-color:#a6d24c;
}

.login button:active {
	position:relative;
	top:1px;
}

.errors p {
	color: red;
	margin-bottom: 0px;
	margin-top: 10px;
}