@media (min-width: 591px){
* {
	margin:0;
	padding: 0;
	box-sizing: border-box;
	font-family: "poppins", sans-serif;
}

html,body {
	height: 100%;
}

body{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 100px;
	background: url(../img/fondo-de-index.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}



.caja{
	width: 420px;
	background: transparent;
	border: 2px solid rgba(255. 255, 255, .5);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	box-shadow: 0 0 30px rgba(0, 0, 0, .9);
	padding-top: 0px;
	padding-bottom: 30px;
	padding:  30px;


	
	
}
img{
	height: 200px;
	width:200px;
	margin-left: 90px;
}

.caja h1{
	font-size: 36px;
	text-align: center;
}

.caja .caja-de-ingreso{
	position: relative;
	width: 100%;
	height: 50px;
	margin:30px 0;
}

.caja-de-ingreso input{
	width: 100%;
	height: 100%;
	background-color: transparent;
	border: none;
	outline: none;
	border:2px solid rgba(0, 0, 0, .5);
	border-radius: 40px;
	font-size: 16px;
	color: black;
	padding: 20px 45px 20px 20px;

}

.caja-de-ingreso i{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px

}

.caja-de-ingreso .acordarse{
	display:flex;
	justify-content: space-between;
	font-size: 14.5
	margin: -15px 0 15px;
}
.acordarse label input {
	accent-color:  #78E1C4 ;
	margin-right: 3px;
}

.btn{
	margin-left: 36%;
	margin-top: 10px;
}

button {
 border:0;
 background-color: #000 ;
 border-radius: 8px;
 display: flex;
 font-size: 18px;
 padding: 2px;
 cursor: pointer;
 transition: .3s;
}

button span{
	background-color: #78E1C4;
	padding: 5px 20px;
	border-radius: 6px;
	transition: .3s;
}

button:hover span{
	background: black;
	color:  #78E1C4;
}

button:active{
	transform: scale(0.9);
}
}

@media (max-width: 590px){

	* {
		margin:0;
		padding: 0;
		box-sizing: border-box;
		font-family: "poppins", sans-serif;
	}
	html,body {
		height: 100%;
	}
	
	body{
		display: flex;
		justify-content: center;
		align-items: center;
		background: url(../img/fondo-movil.jpg) no-repeat;
		background-size: cover;
		background-position: center;
	}
	
	
	
	.caja{
		width: 320px;
		background: transparent;
		border: 2px solid rgba(255. 255, 255, .5);
		border-radius: 20px;
		backdrop-filter: blur(20px);
		box-shadow: 0 0 30px rgba(0, 0, 0, .9);
		padding-top: 0px;
		padding-bottom: 30px;
		padding:  30px;
	
	
		
		
	}
	img{
		height: 100px;
		width:100px;
		margin-left: 90px;
	}
	
	.caja h1{
		font-size: 36px;
		text-align: center;
	}
	
	.caja .caja-de-ingreso{
		position: relative;
		width: 100%;
		height: 50px;
		margin:30px 0;
	}
	
	.caja-de-ingreso input{
		width: 100%;
		height: 100%;
		background-color: transparent;
		border: none;
		outline: none;
		border:2px solid rgba(0, 0, 0, .5);
		border-radius: 40px;
		font-size: 16px;
		color: black;
		padding: 20px 45px 20px 20px;
	
	}
	
	.caja-de-ingreso i{
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 20px
	
	}
	
	.caja-de-ingreso .acordarse{
		display:flex;
		justify-content: space-between;
		font-size: 14.5
		margin: -15px 0 15px;
	}
	.acordarse label input {
		accent-color:  #78E1C4 ;
		margin-right: 3px;
	}
	
	.btn{
		margin-left: 36%;
		margin-top: 10px;
	}
	
	button {
	 border:0;
	 background-color: #000 ;
	 border-radius: 8px;
	 display: flex;
	 font-size: 18px;
	 padding: 2px;
	 cursor: pointer;
	 transition: .3s;
	}
	
	button span{
		background-color: #78E1C4;
		padding: 5px 20px;
		border-radius: 6px;
		transition: .3s;
	}
	
	button:hover span{
		background: black;
		color:  #78E1C4;
	}
	
	button:active{
		transform: scale(0.9);
	}

}