/* CSS Document */
html,body{
	background-color:#CCC;
	font-family: helvetica, sans-serif;
}
header{
	position:absolute;
	top:0;
	left:0;
	right:0;
	height:50px;
	background-color:#BECBD8;
}
content{
	position:absolute;
	top:50%;
	bottom:50%;
	left:50%;
	right:50%;
	width:500px;
	height: 333px;
	margin-top: -220px;
	margin-left:-250px;
	background-color: #479234;
	border-radius:10px;
}
footer{
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	height:50px;
	background-color:#BECBD8;
}
input{
	font-size: 18px;
	background-color: #fff;
	padding: 8px;
	margin-bottom: 7px;
	width: 96%;
	border-radius:4px;
	border: none;
}
input#rem{	
	width: 4%;
    margin-top: 8px;
}
label{
	font-size: 18px;
	color: #fff;
	display: inline-block;
}
content#login {
    height: 240px;
}
content#forgot {
    height: 170px;
}
content#reset {
    height: 260px;
}
form {
    margin: 8%;
}

input[type="submit"] {
	margin-top: 12px;  
	background-color: #215f00;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	width: 100%;
	border: none;
}
img.logo{
	background-color: #fff;
	padding: 2px 189px;
	border-radius:8px;
	border: none;  
	height: 81px;
}

#message{
	position: absolute;
    width: 500px;
    top: 50%;
    margin-top: -32%;
    border-radius: 11px;
    height: 25px;
    padding-top: 5px;
    text-align: center;
}
content#login div#login a {
    font-size: 18px;
    color: #fff;
    display: inline-block;
    position: absolute;
    right: 40px;
    margin-top: 7px;
}
#message.success{	
    background-color: #81CA6F;
}
#message.failure{
	margin-top: -38%;
	height: 56px;
	background-color: rgb(205, 21, 21);
}