body {
	margin: 0px;
}

h1 {
	font-weight: lighter;
	text-align: center;
}

input {
	outline: none;
	border: 0px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.7);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.7);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.7);
	font-size: 15px;
}

.aparecer_prin{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	animation-name: aparecer_prin;
	animation-duration: 8s;
}

.anim_aparecer{
	animation-name: aparecer_prin;
	animation-duration: 2s;
}

.frame_1 {
	position: absolute; 
	background-color: 
	rgba(0,0,0,0.2);
	width: 100vw;
	height: 100vh;
}

.centrado {
	display: flex;
	justify-content: center;
	align-items: center;
}

@keyframes aparecer_prin {
	1% {opacity: 0;}
	10% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}

.contenedor_login {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 350px;
	height: 100vh;
	background-color: rgba(255,255,255,.6);
	-webkit-box-shadow: -10px 0px 17px -5px rgba(0,0,0,0.62);
	-moz-box-shadow: -10px 0px 17px -5px rgba(0,0,0,0.62);
	box-shadow: -10px 0px 17px -5px rgba(0,0,0,0.62);
}

.seccion_contenido {
	width: 80%;
	padding-left: 10%;
	padding-right: 10%;
}

.error {
	color: red;
	width: 100%;
	margin-top: 1em;
	margin-bottom: 0.5em;
	text-align: center;
	font-family: Quicksand;
}

.contenido {
	margin-bottom: 50px;
	width: 100%;
	height: 220px;
	font-family: Quicksand;
}

.entry {
	width: 90%;
	border-radius: 5px;
	margin-top: 5px;
	margin-bottom: 8px;	
	height: 20px;
	padding: 4px 5%;
}

.boton {
	cursor: pointer;
	transition: all 0.4s ease-in-out;
	font-family: Quicksand;
	margin-top: 10px;
	font-size: 16px;
	border-radius: 14px;
	padding: 10px;
	background-color: transparent;
}

.boton:hover {
	background-color: rgba(0,73,124,0.7);
	color: white;
}

@media (max-width: 500px) {
	.contenedor_login {width: 100vw;}
}