html{
	height: 100%;
}
body{
	margin: 0;
	padding: 0;
	height: 100%;
	background-image: url(../images/ingreso.jpg);
	background-size: cover;

 

	background-repeat: no-repeat;
	font-family: sans-serif;
}
.titulo{
	text-align: center;
	padding: 50px 0 20px;

}
.titulo h1{
	margin: 0;
	padding: 0;
	color: #fff;
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 400;
}
.container{
	position: relative;
	width: 50%;
	height: 550px;
	display: flex;
	background: rgba( 255, 255, 255, 0.15 );
	backdrop-filter: blur( 17px );-webkit-backdrop-filter: blur( 17px );
	margin: 0 auto;
	
	box-shadow: 0 15px 40px rgba(0, 0, 0, .5);
}
.contact-box{
	max-width: 97%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	background: rgba( 255, 255, 255, 0.15 );
	box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.2 );
	backdrop-filter: blur( 10px );
	-webkit-backdrop-filter: blur( 10px );
	height: 95%;
	
	margin: 10px auto;
}
.izquierda{
	
	background: url(../images/bgingreso.png);
	background-size: contain;
	background-repeat: no-repeat;
	box-sizing: border-box;
	background-position: center;
	margin-top: 6%;
	margin-bottom: 6%;
	filter: opacity(100%);
	
}
.container .derecha{
	float: right;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	filter: opacity(100%) !important;
}

.formulario{
	width: 100%;
	padding: 80px 40px;
	box-sizing: border-box;
	height: 100%;
	background: #fff;
}
.formulario img{
	width: 100%;
}
.formulario p{
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #0F2027;
}
.formulario input{
	margin-bottom: 20px;
	width: 100%;
}
.formulario input[type="text"],
.formulario input[type="password"]{
	border: none;
	border-bottom: 2px solid #a6af13;
	outline: none;
	height: 40px;
}
.formulario input[type="text"]:focus,
.formulario input[type="password"]:focus{
	border-bottom: 2px solid #262626;
}
.formulario input[type="submit"]{
	border: none;
	outline: none;
	height: 40px;
	color: #fff;
	background: #262626;
	cursor: pointer;

}
.formulario input[type="submit"]:hover{
	background: #a6af13;
}

@media screen and (max-width: 880px){
	.container{
		height: 450px;
		margin-top: 4%;
	}
	.contact-box{
		grid-template-columns: 1fr;
		width: 100%;
		padding: 10px 10px;
	}
	.container .izquierda{
		height: 100px;
		background-position: center;
	}
	.container .derecha{
		height: 350px;
		background-position: center;
	}
.formulario{
	width: 100%;
	height: 270px;
	padding: 20px 10px;
}