body.login-body {
	color: #8b9cb0;
	text-align: left;
	background: #fff;
	height: 100vh;
}
.login-wrap {
	display: flex;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.login-wrap .login-img,
.login-wrap .login-form {
	display: flex;
	flex-direction: column; -moz-flex-direction: column; -webkit-flex-direction: column;
	justify-content: center; -moz-justify-content: center; -webkit-justify-content: center;
	height: 100%;
}
.login-wrap .login-img {width: 50%;}
.login-wrap .login-form {width: 50%;}

.login-img img {
	height: 100%;
	width: 100%;
	object-fit: cover; -moz-object-fit: cover; -webkit-object-fit: cover;
}

.login-form {
	height: 100%;
	width: 100%;
	display: table;
	position: relative;
}

.login-form .m-login__container {
	padding: 0 15px;
	margin: 0 auto;
	max-width: 370px;
	width: 100%;
}
.login-form .m-login__head h2.m-login__title {
	color: #2e384d;
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
	padding: 0 0 30px 0;
	margin: 0;
}

.login-form .m-form .m-form__group {padding: 0 0 20px 0;}

.login-form .form-control {
	color: #2e384d;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 300;
	background: #f9faff;
	border: 1px solid #e0e7ff;
	box-shadow: none;
	border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
	box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
	padding: 3px 15px;
	margin: 0;
	height: 40px;
	width: 100%;
}

.login-form .form-control:focus {
    background: #f7f8fd ;
	box-shadow: none;
	border: 1px solid #e0e7ff;
    border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
    outline: 0;
	box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
}

.login-form select.form-control,
.login-form select.form-control:hover,
.login-form select.form-control:focus {
	appearance: none;
	-moz-appearance: none;
	/* -webkit-appearance: none; */
}


.login-form .m-login__form-action button.btn,
.login-form .m-login__form-action button.btn:hover,
.login-form .m-login__form-action button.btn:focus {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 18px;
	text-align: center;
	background: #f4516c;
	border: none;
	margin: 0 0 15px 0;
	height: 50px;
	width: 100%;
	box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
}

.login-form .m-login__form-action button.btn:hover,
.login-form .m-login__form-action button.btn:focus {background: #f22d4e;}

.m-bottomlink {
	text-align: center;
	padding: 20px 0 0 0;
}
.m-bottomlink a {
	display: inline-block;
	padding: 0 10px;
}
.m-bottomlink a:first-child {padding-left: 0;}
.m-bottomlink a:last-child {padding-right: 0;}


@media only screen and (max-width: 1023px) {
	body.login-body  {background: #f1f1f1; height: auto !important;}
	
	.login-wrap {display: block; padding: 30px 0;}
	
	.login-wrap > div,
	.login-wrap .login-img,
	.login-wrap .login-form {display: block; width: 100%;}
	
	.login-img {display: none !important;}
	
	.login label.clr-light {color: #fff;}
	
	.submit-form {padding: 60px 15px 0 15px;}
	.submit-form h2 {font-size: 26px; line-height: 28px;}
}


