body{
margin: 0px;
top: 0px;
left: 0px;
height: 100vh;
background: #ccc;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ddd, #fff);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ddd, #fff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background-repeat: repeat-y;



}

.form_area{
height: 250px;
margin:30px auto 0px;
position: relative;
}

.form_area.minimal{
margin:30px 0px 0px 8px;
width: auto;
}

.username{
width: 400px;
position: relative;
margin: auto;
margin: auto;
text-align: center;
padding: 20px 0px 0px 0px;
}

.password{
width: 400px;
position: relative;
margin: auto;
margin: auto;
text-align: center;
padding: 0px 0px 20px 0px;
}

.g-recaptcha{
width: 310px;
position: relative;
margin: 0px auto 20px;
}

.submit{
color: white;
text-align: center;
cursor: pointer;
width: 80px;
margin: 10px auto;
padding: 5px 10px;
border: 1px solid #c7d0d2;
border-radius: 2px;
box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #f5f7f8;
background: rgba(40,109,129,1);
background: -moz-linear-gradient(left, rgba(40,109,129,1) 0%, rgba(37,95,111,1) 41%, rgba(32,78,91,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(40,109,129,1)), color-stop(41%, rgba(37,95,111,1)), color-stop(100%, rgba(32,78,91,1)));
background: -webkit-linear-gradient(left, rgba(40,109,129,1) 0%, rgba(37,95,111,1) 41%, rgba(32,78,91,1) 100%);
background: -o-linear-gradient(left, rgba(40,109,129,1) 0%, rgba(37,95,111,1) 41%, rgba(32,78,91,1) 100%);
background: -ms-linear-gradient(left, rgba(40,109,129,1) 0%, rgba(37,95,111,1) 41%, rgba(32,78,91,1) 100%);
background: linear-gradient(to right, rgba(40,109,129,1) 0%, rgba(37,95,111,1) 41%, rgba(32,78,91,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#286d81', endColorstr='#204e5b', GradientType=1 );
}

input[type=text],input[type=password]{
    width: 80%;
    height: 35px;
    padding: 5px 10px 5px 52px;
    border: 1px solid #c7d0d2;
    border-radius: 2px;
    box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #f5f7f8, 0 0 3px 5px rgba(0,0,0,0.8);
    margin: 20px 0px;
}

input[type=text]{
    background-image: url(images/login_user.png);
	background-repeat: no-repeat;
    background-size: 25px;
    background-position: 13px;
}

input[type=password]{
    background-image: url(images/login_pass.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 15px;
}

.logo{
	text-align: center;
	margin: auto;
}

.logo img{
	width: 200px;
    margin-top: 100px;
    margin-left: -25px;
}

#email{
	padding: 10px;
    border-radius: 10px;
    width: 300px;
}