
.cTituloRojo{
	font-size: 20px;
	color: red;
	margin-bottom: 24px;
}

.cSubTitulo{
	background: Thistle;
	color: Purple;
	
	font-size: 18px;
	margin-bottom: 16px;
	border-radius: 8px;
	padding: 10px;
	
	display: flex;
	flex-direction: column;
	/*align-items: center;*/
	justify-content: center;
}

.cPaso{
	background: AliceBlue;
	margin-bottom: 16px;
	padding: 16px;

	display: flex;
	flex-direction: row;

	border-radius: 8px;
}

.cPaso img{
	padding: 0px;
	margin: 8px;
	border-radius: 8px;
	box-shadow: 0px 0px 10px LightBlue;
	border: 1px solid LightBlue;

	max-width: 550px;
	width: 100%;
}

.cNPaso{
	font-weight: bold;
	color: blue;	
	min-width: 80px;
}

.cTxPaso{
	margin-bottom: 12px;
	color: #303030;
	width: 100%;
}

.cCentrado{
	text-align: center;
	margin-top: 20px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.cEnFila{
	margin-top: 20px;
	
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.cNotaImportante{
	margin-top: 24px;
	padding: 16px;
	
	background: LightGoldenrodYellow;
	border: 1px solid Moccasin;
	box-shadow: 5px 5px 20px grey; 
	
	max-width: 450px;
	text-align: left;
}

.cCasillaEMail{
	width: 300px; 
	font-family: Arial; 
	font-size: 25px; 
	color: blue; 
	text-align: center; 
	border: 1px solid LightSkyBlue;
	border-radius: 5px;
	
	height: 35px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}

.cBotonCasilla{
	height: 37px; 
	width: 100px; 
	border-top-left-radius: 0px; 
	border-bottom-left-radius: 0px;
}

.cBotonCasilla:hover{
	width: 100px;
	background: #3a79FF;
}

@media only screen and (max-width: 650px) {
	.cEnFila{
		flex-direction: column;
	}
	
	.cCasillaEMail{
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
	}
	
	.cBotonCasilla{
		border-bottom-left-radius: 5px;
		border-top-right-radius: 0px;
	}
}




.cBotonInstrucciones{
	background: #3a7999;
	border: none;
	color: #f2f2f2;
	padding: 10px;
	font-size: 18px;
	border-radius: 5px;
	box-sizing: border-box;
	transition: all 500ms ease; 
	width: 300px;
}

.cBotonInstrucciones:before{
	content:'';
	top: 0px;
	left: 0px;
	width: 0px;
	height: 42px;
	background: rgba(255,255,255,0.3);
	border-radius: 5px;
	transition: all 2s ease;
}

.cBotonInstrucciones:hover{
	width: 320px;
	background: #3a79FF;
}

.cBotonInstrucciones:active{
	background: blue;
}

.cLink{
	color: blue;
	text-decoration: underline;
	cursor: pointer;
}