header{
	width:100%;
	height:50px;
	background:#005B00;
	border-bottom:2px solid #E09700;
	color:#FFF;
	
	position:fixed;
	top:0;
	left:0;
	z-index:100;
}
.titulo_registro{
	font-size:40px;
}
.header_contenedor{
	margin:auto;
	display:flex;
	justify-content:space-between;
	align-items: center;
}
.seccion_login{
	/*margin:auto;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;*/
	margin-top:10px;
	width:100%;
}
.seccion_login form{
	display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    margin: auto;
    width: 100%;
}
.txt_correo, .txt_clave, .btn-conectarse{
	width:100%;
	padding:5px 5px;
	border:1px solid #ccc;
	border-radius:3px;
}
.btn-conectarse{
	background:#004E30;
	border:1px solid #004000;
	color:white;
	cursor:pointer;
}
.btn-conectarse:hover{
	background:#005E30;
}
.btn-conectarse:active{
	transform:scale(0.95);
}
#respuesta{
	width:100%;
	height:100vh;
	padding:4px;
	background:rgba(0,0,0,.5);
	font-size:12px;
	color:#000;
	border:0px solid #35759F;
	border-radius:3px;
	z-index:99;
	/*overflow-y:scroll;*/
}
.logo{
	margin:5px;
	color:rgba(165,223,0,0.8);
	text-shadow:1px 1px 1px #000;
}
@media (min-width:1024px){
	.registro_container {
    	width:800px;
	}
	.txt_correo, .txt_clave{
		width:38%;
	}
	.btn-conectarse{
		width:20%;
	}
}