input{
    max-width: 300px;
    margin: auto;
    font-size: 16px;
}
.login-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.login-card{
    max-width: 300px;
    margin: 0.3em;
}
.title_logo{
    width: 30px;
}
.logo-footer{
    margin: auto;
    margin-top: 20px;
    text-align: center;
    max-width: 200px;
}

/****************************
 login-page
*****************************/
body{
	color: #fff;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.body{
	/* background: url(../img/login-bg.jpg); */
	background-size: cover;
	z-index: 0;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;   /* 縦横中央 */
}

.grad{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.7))); /* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}

.header{
	position: absolute;
	top: 50%;
	left: 40%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.header div{
	float: left;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 35px;
	font-weight: 800;
}

.header div span{
	color: #5379fa !important;
}

.login{
	position: absolute;
	top: 50%;
	left: 60%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.login input[type=text]{
	width: 250px;
	height: 30px;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
}

.login input[type=password]{
	width: 250px;
	height: 30px;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}

.login input[type=button]{
	width: 260px;
	height: 35px;
	background: #fff;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 2px;
	color: #a18d6c;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 10px;
}

.login input[type=button]:hover{
	opacity: 0.8;
}

.login input[type=button]:active{
	opacity: 0.6;
}

.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=button]:focus{
	outline: none;
}

::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}
.btn-login{
    background: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    border-radius: 2px;
    color: #a18d6c;
    font-size: 16px;
    font-weight: 400;
    padding: 6px 40px;
}
@media screen and (max-width: 1040px){
	.header {
		left: 30%;
	}
	.login {
		left: 65%;
	}
}

@media screen and (max-width: 700px){
	.header {
		top: 30%;
		left: 50%;
	}
	.login-card {
    max-width: 200px;
	}
	.header div {
    font-size: 24px;
	}
	.login {
		top: 65%;
		left: 50%;
	}
}