#index_area_wrap {
	width:100%;
	height:100vh;
	overflow:hidden;
}

#index_area {
	position:absolute;
	left:0;
	top:0;
	background-size:cover;
	background-position:center center;
	background-image: url( images/title_image.jpg );
	width:100%;
	height:100%;
}

#index_left_wrap {
	position:absolute;
	left:0;
	top:0;
	width:50%;
	height:100%;
	display:table;
}

#index_left {
	display:table-cell;
	vertical-align:middle;
	text-align:center;
	padding:20px;
	box-sizing:border-box;
}

#index_left > h1 {
	font-size:50px;
	line-height:60px;
	color:#000;
	margin-bottom:12px;
}

#index_left > h1+p {
	font-size:15px;
	line-height:30px;
	color:#000;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight:400;
    text-align:center;
}

#index_left > p.index_select {
	font-size:15px;
	line-height:30px;
	color:#000;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight:400;
}

#index_login_form {
	margin:50px auto;
	width:60%;
	text-align:center;
}

#index_login_form input[type="text"], #index_login_form input[type="password"]  {
	width: 100%;
	color: #555;
	font-size: 14px;
	letter-spacing: 1px;
	background: #fff;
	border-radius: 18px;
	outline: none;
	box-sizing: border-box;
	border: 1px solid #444;
	margin-bottom: 14px;
	font-family: 'Ubuntu', sans-serif;
	padding:8px 20px;
}

#index_login_form input[type="text"]:focus, #index_login_form input[type="password"]:focus {
	background-color:#fff;
}

#index_login_form p, #index_login_form label {
	text-align:left;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight:500;
	color:#000;
	margin-left:20px;
	margin-bottom:2px;
	font-size:15px;
}

#index_login_form a#forget {
	color:#388094;
	display:inline-block;
	margin-top:8px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

#index_login_form a#forget:hover {
	color:#f00;
}


#index_login_form a#submit {
	cursor: pointer;
	border-radius: 5em;
	color: #000;
	background-color: #89F94F;
	border:1px solid #047101;
	margin-top:24px;
	padding-bottom: 10px;
	padding-top: 10px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 13px;
	width:50%;
	box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.04);
	display:inline-block;
}

#index_login_form a#submit:hover {
	color:#f00;
	opacity:0.6;
}

@media screen and (max-width:680px) {
	#index_login_form {
		margin:50px auto;
		width:90%;
		text-align:center;
	}
	#index_login_form a#submit {
		width:80%;
	}
	#index_left > h1 {
		font-size:32px;
		line-height:37px;
	}
	#index_left_wrap {
		width:100%;
	}
}