@charset "shift_jis";

body {
	font-family: Verdana,"MS PGothic","Osaka",Arial,sans-serif;
}

/* ログインフォーム */
div#form {
	width: 100%;
	heigth: auto;
	color: #4d4d4d;
	font-size: 100%;
	background: #eee;
	border: solid #ccc 1px;
	text-decoration: none;
}
p.form-ttl {
	color: #004080;
	text-align: center;
	font-size: 140%;
	font-weight: bold;
	border-bottom: 3px double #004080;
	padding: 1em 0;
}
p.submit {
	text-align: center;
}
p.pass {
	margin: 1.5em 0;
	text-align: center;
}
p.pass input {
	width: 250px;
	padding: 4px;
}

/* ボタン */
.submit input {
  background: #3498db;
  background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  background-image: -o-linear-gradient(top, #3498db, #2980b9);
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  -webkit-border-radius: 6;
  -moz-border-radius: 6;
  border-radius: 6px;
  font-family: Arial;
  color: #ffffff;
  font-size: 120%;
  padding: 6px 20px;
  text-decoration: none;
}
.submit input:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}

div#form:hover {
  text-decoration: none;
}

/* エラー画面 */
div#err-box {
	text-align: center;
	width: 100%;
	margin: 3em auto;
	border-top: 3px double #004080;
	border-bottom: 3px double #004080;
}
div#err-box p {
	color: #dd0000;
}
