/*
NARANJA: ff7c00
AMARILLO: eed500
AZUL: 4070F4

*/



* {
	padding: 0;
	margin: 0;
	box-sizing:border-box;
}



body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;

/*	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;*/

	height: 100vh;
	background-color: #f4f4f4;
}

.container {
	max-width: 600px;
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	text-align: center;

	margin: 10px auto;
}

h1 {
	color: #333;
}

p {
	color: #666;
}














.logo {
	max-width: 150px;
	height: auto;
	margin: 20px 0;
	opacity: 0; 						/* Inicialmente, a logo está invisível */
	transition: opacity 2s ease-in-out; /* Adicionamos uma transição para suavizar a entrada */
}
	.logo.show {
		opacity: 1; 						/* Quando a classe show é adicionada, a logo fica visível */
	}


















.divNomePessoa_etapa2{
	font-weight: bold;
}






.DIV_esqueciSenha{
	width: 100%;
	height: 15px;
	text-align: right;
	margin-top: -15px;
	margin-bottom: 15px;

	animation: zoomIn 500ms ease-out; /* Adiciona a animação aos inputs */

	position: relative;
}
	.DIV_esqueciSenha > div{
		width: 200px;
		padding: 5px 0px;
		color: rgb(95, 0, 0);
		font-weight: bold;
		cursor: pointer;

		position: absolute;
  		right: 0;
	}
	.DIV_esqueciSenha > div:hover{
		color: rgb(160, 0, 0);
	}


.DIV_cadastrarSenha{
	width: 100%;
	height: 15px;
	text-align: right;
	margin-bottom: -10px;

	position: relative;
}
	.DIV_cadastrarSenha > button{
		width: 200px;
		padding: 5px 10px;
		color: rgb(9, 91, 0);
		cursor: pointer;

		position: absolute;
  		right: 0;
	}
	.DIV_cadastrarSenha > button:hover{
		color: rgb(14, 142, 0);
	}
	









.divListCheckBox{
	margin-left: 30px;
}
.lblCheckBox{
	cursor: pointer;
}

input[type="checkbox"] {
	margin-right: 8px;
	cursor: pointer;
}





.textoDescItem{
	margin-top: 20px;
	color: #333;
	font-size: 20px;
}





a{
	text-decoration: none;
	color: black;
}








.caja_moedas{
	margin: 20px;
	padding: 15px;
	border: 1px solid rgb(200, 200, 200);
	border-radius: 10px;
}







.linhaCaja_btn_OptDownUser{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0px;

	height: 60px;
}







button {
	width: 250px;
	margin-top: 10px;
	background-color: #4caf50;
	color: #fff;
	padding: 10px;
	border: none;
	border-radius: 4px;
	cursor: pointer;

	animation: zoomIn 500ms ease-out; /* Adiciona a animação aos inputs */
}
	button:hover {
		background-color: #45a049;
	}



.caja_btn_atras{
	text-align: left;
}
	.btn_atras{
		background-color: white;
		color: rgb(0, 0, 0);

		width: 130px;
		text-align: left;
		font-size: 18px;
	}
		.btn_atras:hover{
			background-color: white;
			color: rgb(55, 55, 55);
			font-weight: bold;
		}

	.btn_atras_meCadastrar{
		background-color: white;
		color: rgb(0, 0, 0);

		width: 180px;
		text-align: left;
		font-size: 18px;
	}
		.btn_atras_meCadastrar:hover{
			background-color: white;
			color: rgb(55, 55, 55);
			font-weight: bold;
		}








.caja_btn_fazerLogin{
	text-align: right;
}
	.btn_fazerLogin{
		background-color: white;
		color: rgb(17, 67, 0);

		width: 150px;
		text-align: right;
		font-size: 18px;
	}
		.btn_fazerLogin:hover{
			background-color: white;
			color: rgb(35, 140, 0);
			font-weight: bold;
		}




	.btn_tentarDeNovo{
		background-color: white;
		border: 1px solid rgb(203, 203, 203);
		color: rgb(0, 0, 0);

		width: 200px;
		text-align: center;
		font-size: 14px;
	}
		.btn_tentarDeNovo:hover{
			background-color: rgb(238, 238, 238);
			color: rgb(55, 55, 55);
			font-weight: bold;
		}






.divOculto {
	display:none;
 }





/*DATOS DE CONTATO**********************/
.caja_infoContato{
	margin-top: 45px;
}

.div_DatoContacto{
	display: grid;
	grid-template-columns: 35px 2fr;
	grid-gap: 0px;

	width: 350px;

	margin: 10px;
	padding: 5px;
	text-align: left;

	border: 1px solid rgb(186, 210, 255);
	border-radius: 20px;
}
	.div_DatoContacto:hover{
		background-color: rgb(186, 210, 255);
	}








/*------------------ANIMACOES------------------------------*/

 @keyframes zoomIn {
	0% {
	  transform: scale(0);
	  opacity: 0;
	}
	100% {
	  transform: scale(1);
	  opacity: 1;
	}
  }



/*----CARACTERISTICAS CUANDO PANTALLA CELULAR--------------------------------------*/
@media all and (max-width: 800px) {

}


@media all and (max-width: 1000px) {

}