@charset "utf-8";

/* ========== 全体 ========== */

#wrap {
	height: 100%;
	min-height: 100%;
	min-height: 100vh;
    display: flex;
    flex-direction: column;
}


#content {
	padding: 10px 20px 10px 20px;
	background-color: #F5F5F5;
	flex: 1;
}


/* ========== ログインフォーム ========== */

#form {
	background-color: #F1F1F1;
	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_logo {
	color: #0064AE;
	width: 500px;
	display: table-cell;
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
	font-family: Arial;
}

.input_area {
	text-align: center;
}

input[type="text"],
input[type="password"] {
	width: 250px;
	height: 34px;
	font-size: 0.8em;
	color: #aaaaaa;
	border: 1px solid #BFB9AF;
	background-color: #595757;
	border: solid 1px #231815;
	border-radius: 3px;
	box-sizing: border-box;
}

input[type="text"]{
	padding-left: 35px;
	background-repeat: no-repeat;
	background-position: 10px center;
}

input[type="password"]{
	padding-left: 35px;
	background-repeat: no-repeat;
	background-position: 10px center;
}

.submit {
    position: relative;
    display: inline-block;
	width: 250px;
	height: 34px;
	font-size: 1em;
	text-align: center;
    text-decoration: none;
    color: #fff;
	background-color: #0064AF;
	border-style: none;
	border-radius: 3px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);

}

.sys_logo {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;  
    bottom: 10px;  
    right: 20px;  
//	width: 120px;
//	height: 30px;
}










