@import "style.css";
html, body {
	height: 100%;
}
body {
	background: url(../imagens/background.png) no-repeat center center;
	background-size: cover;
}
header {
	background-color: #eaeeef;
}
header > .poweredby{
	color: #999;
	z-index: 2;
}
header > .ajuda{
	color: #66757f;
}
header > .ajuda:hover{
	color: #3e9d87;
}
header > .ajuda > .info {
	padding-bottom: 0;
}
/** Login **/
#login {
	position: fixed;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 50%;
	width: 400px;
	text-align: center;
	margin-top: -60px;
}
#login input {
	box-sizing: border-box;
	background-color: #fff;
	border: none;
	border-bottom: 2px solid #00be8d;
	border-radius: 2px;
	width: 350px;
	height: 50px;
	margin: 5px 0;
	padding: 3px 50px 0 13px;
	background-repeat: no-repeat;
	background-size: 18px;
	background-position: 315px center;
	color: #9da8a9;
}
#login input.error {
	border-color: #cf4647;
}
#login input.email {
	background-image: url(../imagens/icones/user.svg);
}
#login input.senha {
	background-image: url(../imagens/icones/password.svg);
}
#login input.logar {
	position: absolute;
	bottom: -180px;
	left: 50%;
	border: 15px solid #fff;
	border-radius: 100%;
	width: 150px;
	height: 150px;
	margin-left: -75px;
	padding: 0;
	background-color: #005740;
	text-transform: uppercase;
	font-size: 24px;
	color: #fff;
	box-shadow: 0 0 0 120px #3e9d87 inset;
	-webkit-ransition: .5s box-shadow;
	transition: .5s box-shadow;
	cursor: pointer;
}
#login input.logar:hover {
	box-shadow: 0 0 0 0 #3e9d87 inset;
}
@media screen and (max-width: 800px) {
	#login {
		-webkit-transform: translateY(-50%) translateX(50%);
		transform: translateY(-50%) translateX(50%);
	}
}
@media screen and (max-height: 350px) {
	#login {
		margin: 0;
	}
}