@charset "utf-8";
/* CSS Document */

/*/////////////////// GENERAL ///////////////////*/

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

body{
	width: 100%;
	color: white;
	font-family: lato, sans-serif ;
	font-weight: normal;
	background: url("../imagenes/fondo_pag.jpg");
}

h1{
	text-shadow: 6px 6px 8px #000000;
	font-family: Lato Semibold, "Lato Black", "Lato Hairline", "Lato Heavy", "Lato Light", "Lato Medium", "Lato Semibold", "Lato Thin";
	font-size: 35px;
	padding: 35px;
	
}

h2{
	text-shadow: 6px 6px 8px #000000;
	font-family: Lato Semibold, "Lato Black", "Lato Hairline", "Lato Heavy", "Lato Light", "Lato Medium", "Lato Semibold", "Lato Thin";
	font-size: 25px;
	
	text-align: center;
}

span{
	font-size: 33px;
	font-family: Lato Light, sans-serif;
    font-weight: 200;
    font-style: normal;
}

p{
	font-size: 16px;
	font-family: Lato Light, sans-serif;
}

/*/////////////////// ENCABEZADO ///////////////////*/



.cabecera{
	
	background: rgba(3,84,148,1.00);
	display: flex;
	justify-content:space-between;
	align-items: center;
	height: 70px;
	box-shadow: 1px 5px 15px black;
	z-index: 10;
	position: fixed;
	width: 100%;
	border-bottom: solid 1px #035494;
	top:0;
	
}


.logotipo{
	width: 298px;
	height: 56px;
	margin-left: 50px;
}

#icono_menu{
	width: 50px;
	height: 50px;
	cursor: pointer;
	padding: 10px;
	margin-right: 50px;
}

nav{
	width: 300px;
	background: #034871;
	height: 100vh;
	margin-left: -300px;

	transition: all .6s;
	position: fixed;
	z-index: 9;
}

nav.mostrar{
	margin-left: 0px;
	z-index: 9;
}

.menu_navegador{
	width: 300px;
	height: 500px;
	list-style: none;
	line-height: 52px;
	margin-top: 50px;
}

.lista_navegador{
	border-bottom: dashed 1px #FFFFFF;
	margin: 10px auto;
	width: 90%;
	display: flex;
}

.links_navegador{
	color: #ffffff;
	text-decoration: none;
	display: block;
	width: 95%;
	text-align: right;
}

.links_navegador img{
	margin-right: 10px;
}


.contenedor_formulario{
	margin-top:70px;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
}

.formulario{
	margin-top: 50px;
	width: 500px;
	height:auto;
	
}

.contenedor_imput{
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 500px;
	
}

.estilo_etiqueta{
	display: flex;
	flex-direction: column;
	font-family: Lato Light, sans-serif;
	font-size: 14pt;
	font-weight:normal;
	width: 100%;
	margin: 5px 0;
}

.estilo_imput{
	border-radius: 10px;
	height: 30px;
	font-size: 13pt;
	background-color: rgba(3,84,148,1.00);
	border: 1px solid rgba(196,196,196,1.0);
	color: white;
	
}

::placeholder{
	color: white;
	margin-left: 5px;
}

.estilo_mensaje{
	border-radius: 10px;
	font-size: 13pt;
	background-color: rgba(3,84,148,1.00);
	border: 1px solid rgba(196,196,196,1.0);
	color: white;
}

.estilo_boton{
	border: 1px solid rgba(196,196,196,1.00);
	background-color: rgba(3,84,148,1.00);
	border-radius: 10px;
	width: 130px;
	height: 30px;
	color: white;
	cursor: pointer;
	margin-top: 10px;
}

.dato_correcto{
	background-color: #1F9A01;
	border-radius: 10px;
	font-size: 11pt;
	padding: 10px;
	color: white;
}
	
.dato_incorrecto{
	background-color: red;
	border-radius: 10px;
	font-size: 11pt;
	padding: 10px;
	color: white;
}



.footer{
	width: 100%;
	background: #000000;
	height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.footer img{
	margin: 20px;
}



@media (min-width:481px) and (max-width:768px){
	
	.contenedor_formulario{
		height:600px;
	}
	
	
}

@media (min-width:0px) and (max-width:480px){
	
	.logotipo{
	width: 204px;
	height: 38px;
	margin-left: 5px;
}
	
#icono_menu{
		margin-right: 5px;
	}
	
	.contenedor_formulario{
		width: 80%;
		margin: 70px auto;
	}
	
}


