/**
 *	Document   	: efetuarLogin
 *	Created on 	: 26/08/2015, 15:22:04
 *	Author 		: Jansser Dias
 *	Description	:
 *		Folha de estilo da funcionalidade de login.
 */
body.login,
body.main-login,
body.main-loginRecuperarSenha {
	color: #7F7F7F;
	overflow: hidden;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-color: #DADADA;
	height: 100% !important;
	display: flex;
	align-items: center;
}
body.login .logo {
	padding: 20px;
	padding-bottom: 10px;
	text-align: center;
}
body.login .box-login,
body.login .box-forgot {
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: -2px 2px 10px #A7A4A4;
	overflow: hidden;
	padding: 15px;
}
body.login .box-token {
	 background: #FFFFFF;
	 border-radius: 20px;
	 box-shadow: -2px 2px 10px #A7A4A4;
	 overflow: hidden;
	 padding: 15px;
 }
body.login .box-forgot {
	display: none;
}
body.login .box-token {
	display: none;
}
body.login .form fieldset {
	border: none;
	margin: 0;
	padding: 10px 0 0;
}
body.login a.forgot {
	color: #909090;
	font-size: 12px;
	position: absolute;
	right: 10px;
	text-shadow: 1px 1px 1px #FFFFFF;
	top: 9px;
}
body.login input.password {
	padding-right: 6px;
}
body.login label {
	font: Regular 15px/20px Arial;
	letter-spacing: -0.66px;
	color: #7E7E7E;
	font-size: 12px;
}
body.login .copyright {
	font-size: 11px;
	margin: 0 auto;
	padding: 10px 10px 0;
	text-align: center;
}
body.login .form-actions:before,
body.login .form-actions:after {
	content: "";
	display: table;
	line-height: 0;
}
body.login .form-actions:after {
	clear: both;
}
body.login .form-actions {
	margin-top: 20px;
	margin-bottom: 20px;
	display: block;
}
.linkVoltarAltSenha {
	margin-top: 15px;
}
.btn-login:hover,
.btn-login:focus {
  background-color: #26BF64 !important;
}
/* ---------------------------------------------------------------------- */
/*  Idiomas
/* ---------------------------------------------------------------------- */

#idiomasLogin {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex !important;
	-moz-align-items: center;
	-ms-align-items: center;
	-webkit-align-items: center;
	align-items: center !important;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-webkit-justify-content: center;
	justify-content: center !important;
}
.imgFlag {
	width: 30px;
}

/* ---------------------------------------------------------------------- */
/*  Carregando/Recuperação de Senha
/* ---------------------------------------------------------------------- */

.linkVoltarRecSenha {
	float: left;
}
.glyphicon-refresh-animate {
	-animation: spin .7s infinite linear;
	-webkit-animation: spin2 .7s infinite linear;
}
@-webkit-keyframes spin2 {
	from { -webkit-transform: rotate(0deg);}
	to { -webkit-transform: rotate(360deg);}
}
@keyframes spin {
	from { transform: scale(1) rotate(0deg);}
	to { transform: scale(1) rotate(360deg);}
}

/* ---------------------------------------------------------------------- */
/*  Reponsividade
/* ---------------------------------------------------------------------- */

@media (max-width: 767px) {
	/* O container de login fica centralizado! */
	html,
	body.login,
	.main-login,
	.main-loginRecuperarSenha {
		height: 100%;
		max-height: 100%;
		overflow: hidden;
	}
	body.login .main-login,
	body.main-loginRecuperarSenha {
		margin-top: 0px;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex !important;
		-moz-align-items: center;
		-ms-align-items: center;
		-webkit-align-items: center;
		align-items: center !important;
		-moz-justify-content: center;
		-ms-justify-content: center;
		-webkit-justify-content: center;
		justify-content: center !important;
		overflow: hidden;
	}
}
@media (max-width: 480px) {
	.logo img {
		width: 200px;
	}
	.loginTitle {
		font-size: 22px;
	}
	.form-actions {
		margin-top:0px;
		padding-top: 0px;
	}
	.btnLogin {
		display: block;
		width: 100%;
	}
}