* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}

.mid-container {
	width: 100%;
	margin: 0px auto;
}

.clear {
	clear: both;
}


/*****************
 * ***************
 * ****************Login Page
 * ***************
 * ****************/

section.login-page-wrapper {
	width: 100%;
	display: block;
}

.bg-img {
	width: 60%;
	float: left;
	background-repeat: no-repeat;
	background-position: center;
	height: 100vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	vertical-align: middle;
	flex-direction: column;
}

.login-form {
	width: 40%;
	float: right;
	min-height: 100vh;
	position: relative;
}

.logo-box {
	width: 200px;
	margin: 0px auto;
}
.logo-box h2{
	text-align: center;
	letter-spacing: 1px;
}

.logo-box img {
	width: 100%;
}

.form-body input[type="text"],
.form-body input[type="password"] {
	display: block;
	width: 100%;
	outline: none;
	border: 1px solid #ccc;
	padding: 10px 15px;
	margin-bottom: 20px;
	margin-top: 10px;
}

.form-body {
	width: 70%;
	margin: 0px auto;
	margin-top: 40px;
}

button.login-btn {
	display: block;
	border: none;
	outline: none;
	width: 100%;
	font-size: 18px;
	padding: 10px;
	background: green;
	color: #fff;
	margin-top: 20px;
	cursor: pointer;
}

button.wait-btn {
	display: none;
	border: none;
	outline: none;
	width: 100%;
	font-size: 18px;
	padding: 10px;
	background: green;
	color: #fff;
	margin-top: 20px;
	cursor: pointer;
	opacity: 0.8;
	cursor: no-drop;
}

.bg-img:before {
	position: absolute;
	content: "";
	background: #686f437a;
	width: 100%;
	height: 100%;
}

.form-inner {
	position: absolute;
	display: block;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.bg-img h1 {
	color: #f7f7f7;
	z-index: 9999;
	display: block;
	margin-bottom: 10px;
	font-size: 40px;
}

@media screen and (max-width:800px) {
	.login-form,
	.bg-img {
		width: 50%;
	}
}

@media screen and (max-width:600px) {
	.mid-container {
		width: 95%;
	}
	.bg-img {
		display: none;
	}
	.login-form {
		float: none;
		width: 100%;
		min-height: auto;
		background: #fff;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	section.login-page-wrapper {
		height: 100vh;
		background: url('images/login-page.jpg');
		background-repeat: no-repeat;
		background-position: center;
		position: relative;
	}
	.login-page-wrapper:before {
		position: absolute;
		content: "";
		background: #686f437a;
		width: 100%;
		height: 100%;
	}
	.form-inner {
		position: unset;
		width: 100%;
		top: 50%;
		transform: unset;
		padding: 50px 20px;
	}
	.form-body {
		width: 100%;
	}
	.res-class {
		position: relative;
		height: 100vh;
	}
}

input#cbKML {
	margin-bottom: 5px;
}

.division {
	float: none;
	margin: 18px auto;
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 100%;
}

.division-line {
	border-top: 1px solid #DFDFDF;
	position: absolute;
	top: 10px;
	width: 34%;
}

.line-l {
	left: 0;
}

.line-r {
	right: 0;
}

.division span {
	font-size: 17px;
}

.google-login {
	text-align: center;
	text-decoration: none;
	position: relative;
	display: block;
	border: none;
	outline: none;
	width: 100%;
	font-size: 18px;
	padding: 10px;
	background: rgb(220, 74, 61);
	color: #fff;
	margin-top: 20px;
	cursor: pointer;
}

.google-login:before {
	content: "\f1a0 ";
	font-family: FontAwesome;
	left: 5%;
	position: absolute;
	font-size: 23px;
}