@charset "utf-8";

/* ========== ログインフォーム ========== */

#form {
	background-color: #4B4B4B;
	height: 250px;
	width: 500px;
	padding-top: 50px;
	margin-left: auto;    /* 左側マージンを自動的に空ける */
	margin-right: auto;   /* 右側マージンを自動的に空ける */
	text-align: left;     /* 中身を左側表示に戻す */
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -150px 0 0 -250px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.login {
	margin: 20px;
}

.login_logo {
	width: 500px;
	display: table-cell;
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
	color: #FDE100;
}

.logo_wt {
	position: absolute;
	right: 50px;
	top: 20px;
}

.input_area {
	text-align: center;
}

input[type="text"],
input[type="password"] {
	width: 250px;
	height: 34px;
	font-size: 0.8em;
	color: white;
	background-color: #3B3B3B;
	border: 1px solid #2E2E2E;
	border-radius: 3px;
	box-sizing: border-box;
}

input[type="text"]{
	padding-left: 35px;
	background-image: url(../images/i_login.png);
	background-repeat: no-repeat;
	background-position: 10px center;
}

input[type="password"]{
	padding-left: 35px;
	background-image: url(../images/i_pass.png);
	background-repeat: no-repeat;
	background-position: 10px center;
}

input::placeholder {
  color: #999999;
}
/* IE */
input:-ms-input-placeholder {
  color: #999999;
}



.submit {
	position: relative;
	display: inline-block;
	width: 250px;
	height: 34px;
	font-size: 1em;
	text-align: center;
	text-decoration: none;
	color: #3A3A3A;
	background-color: #969696;
	border-style: none;
	border-radius: 3px;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.submit:hover {
	color: #ffffff;
	background-color: #C4C4C4;
}













