@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,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 .imgBx
{
	position: relative;
	width: 50%;
	height: 100%;	
}
section .imgBx:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
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-weight: 600;
	font-size: 1.5em;
	text-transform: uppercase;
	margin-bottom: 20px;
	border-bottom: 4px solid #1b42ab;
	display: inline-block;
	letter-spacing: 1px;
}
section .contentBx .formBx .inputBx
{
	margin-bottom: 20px;
}
section .contentBx .formBx .inputBx span 
{
	font-size: 16px;
	margin-bottom: 5px;
	display: inline-block;
	color: #607d8b;
	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;
	font-size: 16px;
	letter-spacing: 1px;
	color: #607d8b;
	background: transparent;
	border-radius: 25px;
}
section .contentBx .formBx .inputBx input[type="button"]
{
	background: #1b42ab;
	color: #fff;
	outline: none;
	border: none;
	font-weight: 500;
	cursor: pointer;
}
section .contentBx .formBx .inputBx input[type="button"]:hover
{
	background: #142f77;
	color: #607d8b;
}
.remember
{
	margin-bottom: 10px;
	color: #607d8b;
	font-weight: 400;
	font-size: 14px;
}
section .contentBx .formBx .inputBx p
{
	color: #607d8b;
	text-align: center !important;
  	font-size: 80%;
}
section .contentBx .formBx .inputBx p a
{
	color: #1b42ab;
	text-align: center !important;
  	font-size: 90%;
}
section .contentBx .formBx .inputBxfooter p
{	
	font-size: 14px;
	text-align: center;
	color: #607d8b;
}
section .contentBx .formBx .inputBxfooter p a
{
	font-size: 14px;
	text-align: center;
	color: #1b42ab;
	text-decoration: none;
}

@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 / .9);
		margin: 50px;
	}	
}
