*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Quicksand', sans-serif;
}

body{
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;

	overflow: hidden;
	/* background-image: url(./logo\ rivas\ desenfoque.mp4); */
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* ----------video---------- */
video{
	position: fixed;
	min-width: 100%;
	min-height: 100%;

	top: 50%;
	left: 50%;

	transform: translateX(-50%) translateY(-50%);
	z-index: -1;
}






.container{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 100px;
}

.container:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	/* background: url("img/bg.jpg") no-repeat center; */
	background-size: cover;
	filter: blur(50px);
	z-index: -1;
}
.contact-box{
	max-width: 850px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 30px;
	background-color: #fff;
	box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
}

.left{
	background: url("./logo2.png") no-repeat center;

	background-size: cover;
	height: 100%;
	transition: 0.3s all ease;
}


.right{
	padding: 25px 40px;
	min-height: 400px;
}


.credenciales{

	width: 100%;
	height: auto;
}



h2{
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 40px;
}

h2:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #2e58cc;
}

.field{
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	border-radius: 10px;
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 32px;
	transition: .3s;
}

.field:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

textarea{
	min-height: 150px;
}



.field:focus{
    border: 2px solid rgba(30,85,250,0.47);
    background-color: #fff;
}



.btn {
	width: 100%;
	text-decoration: none;
  position: relative;
  padding: 10px;
  margin: 8px;
  background-color: #57347C;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  cursor: pointer;
  border: 2px solid #57347C;
  border-radius: 25px;
  transition: all .3s ease;
}


.btn:hover{
	background-color: #fff;
	color: #57347C;

}



@media screen and (max-width: 880px){
	.contact-box{
		grid-template-columns: 1fr;
	}
	.left{
		height: 200px;
	}

}


@media screen and (max-width: 540px) {
	.container{
		padding: 10px
	}

	.contact-box{
		width: 90%;
	}
}