body {
	font-family: Geneva, Arial, Helvetica, sans-serif;
}

.wrapper {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/fundo-default.jpg') no-repeat top left;
	background-size: cover;
	overflow: auto;
}

@media only screen and (min-width: 900px) {
	.container {
		width: 960px;
		margin: 0 auto;
	}
}

.logo {
	width: auto;
	margin: 1% auto 10px auto;
	text-align: center;
}

.login-form {
	width: 300px;
	margin: 0;
	padding: 8px;
	background-color: #fff;
	-moz-box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.75);
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.75);
}

.login-form h2 {
	text-transform: uppercase;
	text-align: center;
	background-color: #ccc;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin: 5px;
	font-size: 16px;
	font-weight: normal;
	padding: 5px 0;
}

.login p {
	width: auto;
	margin: 10px auto;
	text-align: center;
}

.login input.texto {
	background-color: e4e4e4;
	border: 2px solid #ccc;
	padding: 3px;
}

.login input.entrar {
	background-color: #ed1b24;
	color: #fff;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
}

.login input.entrar:hover {
	background-color: #962d27;
}

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: #962d27;
	color: #fff;
	font-size: 12px;
	text-align: center;
	line-height: 25px;
}