* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
section {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
}
section .imgBx {
	position: relative;
	width: 50%;
	height: 100%;
}
section .imgBx:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(225deg,#e91e63,#03a9f4);
	z-index: 1;
	mix-blend-mode: screen;	
}
section .imgBx img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
section .contentBx {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 100%;
}
section .contentBx .formBx {
	width: 50%;
}
section .contentBx .formBx h2 {
	color: #607D8B;
	font-family: Comic Sans MS;
	font-weight: 600;
	font-size: 1.5em;
	text-transform: uppercase;
	margin-bottom: 20px;
	border-bottom: 4px solid #FF4584;
	display: inline-block;
	letter-spacing: 1px;
}
section .contentBx .formBx a {
	color: #607D8B;
	font-family: Comic Sans MS;
	font-weight: 400;
	font-size: 1em;
	text-decoration: none;
	display: inline-block;
	letter-spacing: 1px;
}
section .contentBx .formBx .inputBx {
	margin-bottom: 20px;
}
section .contentBx .formBx .inputBx span {
	color: #607D8B;
	font-size: 16px;
	margin-bottom: 5px;
	display: inline-block;
	font-weight: 300;
	letter-spacing: 1px;
}
section .contentBx .formBx .inputBx input {
	width: 100%;
	padding: 10px 20px;
	outline: none;
	font-weight: 400;
	border: 1px solid #607D8B;
	color: #607D8B;
	font-size: 16px;
	letter-spacing: 1px;
	background: transparent;
	border-radius: 30px;
}
section .contentBx .formBx .inputBx input[type='submit'] {
	background: #FF4584;
	color: #FFF;
	outline: none;
	border: none;
	margin-bottom: 20px;
	font-weight: 500;
	cursor: pointer;
}
section .contentBx .formBx .inputBx input[type='submit']:hover {
	background: #F53677;
}
section .contentBx .formBx .remember {
	margin-bottom:10px;
	color #607D8B;
	font-weight: 400;
	font-size: 14px;
}
@media (max-width:768px) {
	section .imgBx {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	section .contentBx {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		z-index: 1;
	}
	section .contentBx .formBx {
		width: 100%;
		padding: 40px;
		background: rgb(255 255 255 / 0.9);
		margin:50px;
	}
}