*{
	padding: 0;
	margin: 0;
	
}
html,body{
	height: 100%;
	width: 100%;
  
  }
  body{
	
	background-image: url(../img/1683675220756.jpg) ;	
	height: 80%;	
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
  }

/*Estilo ventana emergente*/
.overlay {
	background: rgba(0,0,0,.3);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	justify-content: center;
	display: flex;
	visibility: hidden;
}
.contenedor {

	position: relative;
	top: 120%;
  }
  
  .hijo {

	width: 50px;
	height: 50px;
	position: relative;
	top: 200%;
	left: 50%;
	margin: -25px 0 0 -25px; /* aplicar a top y al margen izquierdo un valor negativo para completar el centrado del elemento hijo */
  }
.overlay.active {
	visibility: visible;
}

.popup {
	background: #e9dddd;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	border-radius: 3px;
	font-family: Arial, Helvetica, sans-serif;
	padding: 20px;
	text-align: center;
	width: 80%;	
	transition: .3s ease all;
	transform: scale(0.7);
	opacity: 0;
}

.popup .btn-cerrar-popup {
	font-size: 16px;
	line-height: 16px;
	display: block;
	text-align: right;
	transition: .3s ease all;
	color: #BBBBBB;
}

.popup .btn-cerrar-popup:hover {
	color: #000;
}

.popup h3 {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 10px;
	opacity: 0;
}


.popup form .btn-submit {
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	border: none;
	color: #fff;
	background: #5E7DE3;
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	cursor: pointer;
	transition: .3s ease all;
}

.popup form .btn-submit:hover {
	background: rgba(94,125,227, .9);
}

/* ------------------------- */
/* ANIMACIONES */
/* ------------------------- */
.popup.active {	transform: scale(1); opacity: 1; }
.popup.active h3 { animation: entradaTitulo .8s ease .5s forwards; }
.popup.active h4 { animation: entradaSubtitulo .8s ease .5s forwards; }
.popup.active .contenedor-inputs { animation: entradaInputs 1s linear 1s forwards; }

@keyframes entradaTitulo {
	from {
		opacity: 0;
		transform: translateY(-25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradaSubtitulo {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradaInputs {
	from { opacity: 0; }
	to { opacity: 1; }
}


@font-face {
    font-family: 'Pa1';
    src: url('../Fonts/Ludka\ Biniek\ -\ Geller\ Headline\ Bold.otf');
}
@font-face {
    font-family: 'Pa2';
    src: url('../Fonts/Druk-Heavy.otf');
}

.container{
	min-height: 100vh;
	background-position:center bottom;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}
.login{
	min-height: 500px;
	max-width: 400px;
	width: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	position: relative;
	border-radius: 40px;
	background: rgb(255, 255, 255,0.2);
	backdrop-filter: blur(10px);
	box-shadow: 0px 5px 15px 0px rgb(66 24 113/ 30%);


}
.login::after, .login::before{
	background: rgb(255, 255, 255,0.2);
	border-radius: 10px;
	position: absolute;
	box-shadow: 0px 5px 15px 0px rgb(66 24 113/ 30%);
	content: '';
	animation-name: rotate-box;
	animation-duration: 1.5s;
	

}
.login::after{
	width: 100px;
	height: 100px;
	top: -30px;
	left: -50px;
}
.login::before{
	width: 120px;
	height: 130px;
	top: 30px;
	left: -90px;

}
@keyframes rotate-box{
	0%{
		transform: rotate(90deg);
	}
	100%{
		transform: rotate(0);
	}
}

.login h2{
	color: #1d6515;
	margin-bottom: 50px;
	font-size: 55px;
    font-family:Pa2 ;
}
.login input{
	border: none;
	outline: none;
	color: #ffedf9;
}
.login .inputs{
	width: 85%;
	margin-bottom: 30px;
	border-bottom: 3px solid #ffedf9;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.login .inputs input{
	width: 93%;
	background: none;
	font-size: 20px;
	padding: 5px 10px 10px 0px;
}
.login .inputs input::placeholder{
	color: #e4d6df;
}
 .btn input{
	background: #769ffe;
	font-size: 17px;
	padding: 10px ;
	border-radius: 10px;
	transition: 0.6s ease all;
	margin-bottom: 10px;
}
.imagen
{
	width: 150px;
	height: 150px;
}
i{
	color: #cc1890;
	margin-bottom: 3px;
}
.btn input:hover{
	background: #5f7ff3;
	cursor: pointer;
}

p{
	color: #ffedf9;

}

a:hover{
	text-decoration: none;
}
@media (min-width:320px)  { 
	.login{		
		max-width: 80%;
		max-height: 80% !important;
		width: 80%;
		height: 100px !important;
		padding: 5px;
		border-radius: 4px;
		
	
	
	}
	}
	
	@media (min-width:600px)  { 
		.login h2{			
			font-size: 85px;
		
		}
		.login{		
			max-width: 80%;
			max-height: 500px;
			width: 80%;
			height: 500% !important;
			
		
		
		}
		
	}