.section_form{
	width: 100%;
	overflow: hidden;
	position: relative;
	margin: auto;
	&:hover .span_line > .line_one{
		transform: scale(1.3);
	}
	&:hover .background_img{
		transform: scale(1);
		filter: blur(2px);
	}
	&:hover .text_form h2{
		transform: translateY(15px);
	}
	&:hover .text_form p{
		transform: translateY(-15px);
	}
}
.section_form::after{
		content:"";
		position: absolute;
		background-color: rgba(100,149,237, .5);
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: -1;
}
.inter_section{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	z-index: 2;
	padding: 60px 30px;
}
.background_img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	transform: scale(1.3);
	transition: transform .5s;
}

/*---- estilos de formulario---*/

.section_form .inter_section form{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px 50px;
	width: 100%;
	max-width: 600px;
	height: 100%;
}
.section_form .inter_section form input{
	width: 100%;
	max-width: 600px;
	padding: 15px 10px;
	/*---  color de texto formulario ---*/
	color:#fff;
	margin-bottom: 30px;
	font-size: 1.2rem;
	font-family: sans-serif;
	background-color: transparent;
	border: 2px solid blue;
	letter-spacing: 1.2px;
	outline: none;
	transition: transform .4s;
	&:active{
		transform: translateY(-5px);
	}
}

#boton_enviar{
	border: none;
	background-color: rgb(100,145,245);
	width: 200px;
	transition: .2s;
	display: flex;
	margin-right: auto;
	cursor: pointer;
	&:hover{
		background-color: rgb(100,125,255);
	}
}

#text_area{
	width: 100%;
	max-width: 600px;
	margin-bottom: 30px;
	padding: 20px;
	outline: none;
	font-family: sans-serif;
	/*---  color de texto text area ---*/
	color: #fff;
	background-color: transparent;
	font-size: 1.2rem;	
	letter-spacing: 1.2px;
	border: 2px solid blue;
	resize: none;

}

/*----- estilos parte de texto derecha-----*/
.text_form{
	width: 100%;
	max-width: 600px;
	padding: 50px;
	font-family: sans-serif;
	
}
.text_form h2{
	font-size: 4rem;
	/*--- color de titulo ---*/
	color: rgb(0,0,139);
	transition: transform .4s;
}
.text_form p{
	color: #fff;
	font-weight: 400;
	font-size: 1rem;
	transition: transform .4s;
}
.span_line{
	position: relative;
	display: flex;
	padding: 20px 4px;
	width: 100%;
	height: 5px;
}
.span_line span{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transition: transform .4s;
	z-index: -1;
}
