*{
	font-family: 'poppins', sans-serif;
	margin: 0;
	padding: 0;
}

section{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 100vh;
	background: url(../img/fondos/espacio.jpg) no-repeat;
	background-position: center;
	background-size: cover;
}

.contenedor{
	position: relative;
	max-width: 92%;
	width: 400px;
	backdrop-filter: blur(15px);
	border: 2px solid rgba(255, 255, 255, .6);
	border-radius: 20px;
	margin-top: -115px;
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.contenedor h2{
	font-size: 2.3 rem;
	color: #fff;
	text-align: center;
}
.input-contenedor{
	position: relative;
	margin: 30px 0;
	width: 300px;
	border-bottom: 2px solid #fff;
}
.input-contenedor label{
	position: absolute;
	top: 50%;
	left: 5px;
	color: #fff;
	font-size: 1rem;
	pointer-events: none;
	transition: .6s;
	font-weight: bold;
}

input:focus ~ label,
input:valid ~ label{
	top: -10px;
}
.input-contenedor input{
	width: 100%;
	height: 50px;
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 1rem;
	padding: - 35px 0 5px;
	color: #fff;
}

.input-contenedor i{
	position: absolute;
	color: #fff;
	font-size: 1.6rem;
	top: 19px;
	right: 8px;
}
  
.button{
	width: 100%;
	height: 45px;
	border-radius: 40px;
	background: #fff;
	border: none;
	font-weight: bold;
	cursor: pointer;
	outline: none;
	font-size: 1rem;
	transition: .4s;
}
.button:hover{
	opacity: .9;
	background-color: #105ee1;
	color: #ffffff;
	font-size: 23px;
}
.registrar{
	font-size: .8rem;
	color: #fff;
	text-align: center;
	margin: 20px 0 10px;
}
.registrar p a{
	text-decoration: none;
	color: #fff;
	font-weight: bold;

}
.logo{
	align-items: center;
	margin: 0 auto;
	display: flex;
}
.nav_logo{
	margin-top: 10px;
	margin: 0 auto;
    width: 320px;
    border-radius: 20%;
}

.alert{
	padding: 10px;
	margin-bottom: 10px;
	color: #D05c5f;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
}

input:-webkit-autofill {
	transition: background-color 5000s ease-in-out 0s;
	font-size: 15px;
}


