:root{
	--blanco:#ffffff;
}

*{
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
}

section{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 100vh;
	/*background-image: url('../IMG/fondo.jpg');*/
	background-color: rgb(10, 109, 71);
	background-position: center;
	background-size: cover;
}

.contenedor{
	position: relative;
	width: 400px;
	border: 2px solid rgba(255, 255,255, .6);
	border-radius: 20px;
	backdrop-filter: blur(15px);
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contenedor h2{
	font-size: 2.3rem;
	color: var(--blanco);
	text-align: center;
}

.input-contenedor{
	position: relative;
	margin: 30px 0;
	width: 300px;
	border-bottom: 2px solid var(--blanco);
}

.input-contenedor label{
	position: absolute;
	top: 50%;
	left: 5px;
	color:var(--blanco);
	font-size: 1rem;
	pointer-events: none;
	transition: .6s;
	font-family: bold;
	transform: translateY(-50%);
}


/*hace la animacion del texto*/
.text-input:focus + .labelUsuario, .filled, .text-input:not(:placeholder-shown) + .labelUsuario 
{
	top: -5px;
	font-size: 1em;
}



.input-contenedor input{
	width: 100%;
	height: 50px;
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 1rem;
	padding: -35px 0 5px;
	color: var(--blanco);
}

.input-contenedor i{
	position: absolute;
	color: var(--blanco);
	font-size: 1.6rem;
	top: 19px;
	right: 8px;

}

input[type="submit"]{
	width: 100%;
	height: 45px;
	border-radius: 40px;
	color: #121212;
	background: var(--blanco);
	border: none;
	font-weight: bold;
	cursor: pointer;
	outline: none;
	font-size: 1rem;
	transition: .5s;
}

.submit:hover{
	opacity: .9;
}
