html, body{
	padding:0px;
	margin:0px;
	overflow-x: hidden;
	font-family: 'Ubuntu', sans-serif;
	background-image: url(../img/loginBackground02.webp);
	background-size: cover;
}
a, ul, li, p, h1, h2, h3, h4, h5, h6, button, input, textarea{
	font-family: 'Ubuntu', sans-serif;
	text-decoration:none;
	margin: 0px;
	padding: 0px;
	line-height: 150%;
	color: #666;
}
a{
	color: inherit;
}
*{
	transition: 0.3s ease;
}
.background{
	width: 100%;
	height: 100%;
	position: fixed;
	display: flex;
	background-color: #000C;
}
.backgroundConteudo{
	width: 100%;
	max-width: 450px;
	display: flex;
	flex-wrap: wrap;
	margin: auto;
}
.marca{
	width: 100%;
	margin: 0 0 25px 0;
	display: flex;
	justify-content: center;
}
.marca img{
	width: 200px;
}
.conteudo{
	width: 100%;
	padding: 50px 25px;
	border-radius: 10px;
	box-shadow: 0 0 10px #0003;
	background-color: #FFF;
}
.texto{
	width: 100%;
}
.texto p{
	font-style: italic;
	text-align: center;
}
.texto a{
	font-weight: bold;
}
.texto a:hover{
	color: #333;
}
.formulario{
	width: 100%;
	margin: 50px 0 25px;
}
.formularioInputBg{
	width: 100%;
	position: relative;
	display: flex;
	margin: 0 0 25px;
}
.formularioIcone{
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	margin: 0 10px 0 0;
	opacity: 0.50;
}
.formularioIconeView{
	width: 20px;
	height: 20px;
	position: absolute;
	right: 0px;
	top: 0px;
	opacity: 0.25;
}
.formularioIconeNoView{
	width: 20px;
	height: 20px;
	position: absolute;
	right: 0px;
	top: 0px;
	opacity: 0.25;
}
.formularioInput{
	width: 100%;
	padding: 0 10px 5px;
	outline: none;
	border: none;
	border-bottom: 1px solid #CCC;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}
.formularioInput::placeholder{
	font-style: italic;
	font-weight: 400;
	color: #999;
}
.formularioInput:focus,
.formularioInput:active{
	border-bottom: 2px solid #090;
}
.formularioCheckbox{
	width: 100%;
	margin: 0 25px 0 0;
	position: relative;
}
.formularioCheckboxBg{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	margin: 0 0 12px;
	cursor: pointer;
}
.formularioCheckboxInput{
	width: 0;
	height: 0;
	opacity: 1;
	position: absolute;
	cursor: pointer;
}
.formularioCheckmark{
	min-width: 20px;
	min-height: 20px;
	margin: 0 10px 0 0;
	border: 2px solid #CCC;
	border-radius: 5px;
	background-color: #FFF;
	transform: scale(0.9);
}
.formularioCheckboxBg:hover .formularioCheckboxInput ~ .formularioCheckmark{
	background-color: #EEE;
}
.formularioCheckboxBg .formularioCheckboxInput:checked ~ .formularioCheckmark{
	border: 2px solid #090;
	background-color: #090;
}
.formularioCheckboxBg .formularioCheckmark:after{
	width: 5px;
	height: 10px;
	position: absolute;
	display: none;
	left: 6px;
	top: 2px;
	border: solid white;
	border-width: 0 3px 3px 0;
	content: "";
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.formularioCheckboxInput:checked ~ .formularioCheckmark:after {
 	display: block;
}
.formularioCheckbox p{
	font-weight: 400;
	font-style: italic;
	color: #999;
}
.formularioCheckbox a{
	font-weight: bold;
}
.formularioCheckbox a:hover{
	color: #333;
}
.formularioLink{
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.formularioLink p{
	font-weight: 400;
	font-style: italic;
	text-align: right;
	color: #999;
	cursor: pointer;
}
.formularioLink p:hover{
	color: #333;
}
.formularioSubmit{
	width: 100%;
	height: 40px;
	border: none;
	font-style: 14px;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 5px;
	color: #FFF;
	background-color: #0AA;
}
.formularioSubmit:hover{
	filter: brightness(1.1);
}

.alertasuccess,
.alertaerror{
	padding:20px 10px; 
	margin: 10px 0 0;
	border-radius: 5px;
	text-align: center;
}
.alertasuccess{
	color:#030;
	background:#AC4
}
.alertaerror{
	color:#EEE;
	background:#C00
}

.assinatura{
	width: 100%;
	margin: 25px 0 0;
}
.assinatura p{
	font-size: 12px;
	text-align: center;
	color: #FFF9;
}
.assinatura a{
	color: #FFFC;
}

@media screen and (max-width:1024px) and (min-width: 768px){
}

@media screen and (max-width:767px){
	.background{
		overflow: auto;
	}
	.backgroundColor{
		width: 90%;
		padding: 25px 0;
	}
	.conteudo{
		padding: 25px;
	}	
	.formularioCheckbox{
		width: 100%;
		margin: 0 0 10px 0;
		position: relative;
	}
}