/* Padrões CSS da tela de Login */
html, body {
	height: 99%;
	min-height: 99%;
}
.loginContainer {
	height: 100%;
	min-height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding-top: 10px;
}
.loginBlock {
	padding: 20px;
	max-width:90%;
}
.loginBlock img {
	width:100%;
}
.loginFields {
	height: 100%;
	min-height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding-top: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
	.loginBlock { padding: 20px 0px; }
	.loginBlock img { max-width: 100%; }
}
@media (max-width: 767px) {
	.loginBlock { padding: 20px 0px; }
	.loginBlock img { max-width: 100%; }
}
