@charset "utf-8";
/* CSS Document */


/******************************

1. login

******************************/





/*********************************
1. login
*********************************/

#wrapper, #content-wrap, #content {
	float: left;
	width: 100%;
}

.index {
	background-color: black;
}

.login-section {
	float: left;
	width: 100%;
	height: 100vh;
	background-image: url("../images/bg_login.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

@media only screen and (min-width: 1px) and (max-width: 1024px) {

	.login-section {
		background-image: url("../images/bg_login2.jpg");
		background-size: contain;
		background-position: center center;
	}

}

.parent {
	width: 350px;
	height: 550px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -275px 0 0 -175px;
}

.loginBox {
	float: left;
	width: 350px;
	height: 550px;
}

.login-top {
	float: left;
	width: 100%;
}

/*.login-top #logo {
}*/

.login-top #logo img {
	width: 350px;
}

@media only screen and (min-width: 1px) and (max-width: 430px) {

	.login-top #logo img {
		width: 100%;
	}

}

.login-bottom {
	float: left;
	width: 100%;
	padding-top: 30px;
}

.login-bottom .loginForm {
	float: left;
	width: 350px;
	margin: auto;
}

@media only screen and (min-width: 1px) and (max-width: 430px) {

	.login-bottom .loginForm {
		width: 100%;
	}

}

.login-bottom .loginForm .full-width {
	float: left;
	width: 100%;
	margin-bottom: 5px;
}

.login-bottom .loginForm label {
	float: left;
	color: #fff;
	padding: 0;
	margin: 0;
	font-size: 1.7em;
	text-align: right;
	height: 40px;
	line-height: 40px;
	width: 120px;
	padding-right: 10px;
	font-weight: 700;
}

@media only screen and (min-width: 1px) and (max-width: 430px) {

	.login-bottom .loginForm label {
		font-size: 1.4em;
		width: 100px;
	}

}

.login-bottom .loginForm .inputstyle {
	float: right;
	color: #000;
	padding-left: 5px;
	padding-right: 5px;
	margin: 0;
	height: 30px;
	width: calc( 100% - 140px);
	line-height: 30px;
	font-size: 1.5em;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 20px;
}

@media only screen and (min-width: 1px) and (max-width: 430px) {

	.login-bottom .loginForm .inputstyle {
		font-size: 1.2em;
		width: calc(100% - 120px);
	}

}

.login-bottom .loginForm .code {
 	float: left;
 	width: 100%;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
 }

.loginForm input[type=submit],
.loginForm input[type=reset] {
	font-weight: 700;
	background-color: #248db9;
	border: none;
	color: white;
	font-size: 1.35em;
	text-decoration: none;
	margin: 4px 2px;
	padding: 2px 35px 2px 35px;
	cursor: pointer;
	border-radius: 5px;
	line-height: 1.2;
}

.loginForm input[type=submit]{
	float: left;
	margin-left: 20px;
}

.loginForm input[type=reset] {
	float: right;
	margin-right: 20px;
}

@media only screen and (min-width: 1px) and (max-width: 800px) {

	.loginForm input[type=submit],
	.loginForm input[type=reset] {
		padding: 2px 30px 2px 30px;
		font-size: 1.4em;
	}

	.loginForm input[type=submit] {
		margin-left: 50px;
	}

	.loginForm input[type=reset] {
		margin-right: 50px;
	}

}



