@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins",sans-serif;
}
section{
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
}
section .imgBox{
	position: relative;
	width: 50%;
	height: 100%;
}
/*section .imgBox:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(225deg,#379237,#0008C1);
	z-index: 1;
	mix-blend-mode: screen;
}*/
section .imgBox img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
section .contentBox{
	display: flex;
	width: 50%;
	height: 100%;
	justify-content: center;
	align-items: center;

}
section .contentBox .formBox{
	width: 50%;
}
section .contentBox .formBox h2{
	color: #607d8b;
	font-weight: 600;
	font-size: 1.5em;
	margin-bottom: 30px;
	border-bottom: 2px solid #379237;
	display: inline-block;
	letter-spacing: 1px;
}
section .contentBox .formBox .inputBox{
	margin-bottom: 20px;
}
section .contentBox .formBox .inputBox span{
	font-size: 16px;
	margin-bottom: 5px;
	display: inline-block;
	color: #607d8b;
	font-weight: 300;
	letter-spacing: 1px;
}
section .contentBox .formBox .inputBox input{
	width: 100%;
	padding: 10px 20px;
	outline: none;
	font-weight: 400;
	border: 1px solid #379237;
	font-size: 16px;
	letter-spacing: 1px;
	color: #000000;
	background: transparent;
}
section .contentBox .formBox .inputBox input[type="submit"]{
	background: #379237;
	color: #ffffff;
	outline: none;
	border:none;
	font-weight: 500;
	cursor: pointer;

}
section .contentBox .formBox .inputBox input[type="submit"]:hover{
	background: #54B435;
	color: #ffffff;
}
@media (max-width: 768px){
	section .imgBox{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	section .contentBox{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		z-index: 1;
	}
	section .contentBox .formBox{
		width: 100%;
		padding: 40px;
		margin: 50px;
		background: rgb(0,160,0,0.6);
	}
	section .contentBox .formBox h2{
	color: #FCFDF2;
	font-weight: 600;
	font-size: 1.5em;
	margin-bottom: 30px;
	border-bottom: 2px solid #FCFDF2;
	display: inline-block;
	letter-spacing: 1px;
    }
    section .contentBox .formBox .inputBox span{
	font-size: 16px;
	margin-bottom: 5px;
	display: inline-block;
	color: #FCFDF2;
	font-weight: 300;
	letter-spacing: 1px;
    }
    section .contentBox .formBox .inputBox input[type="submit"]{
	background: #000000;
	color: #ffffff;
	outline: none;
	border:none;
	font-weight: 500;
	cursor: pointer;
	}
	section .contentBox .formBox .inputBox input[type="submit"]:hover{
		background: #54B435;
		color: #ffffff;
	}
}