@charset "utf-8";
/* CSS Document */

* {
	padding: 0;
	margin: 0;
}

html, body {
	height: 100%;
}

body {
	min-width: 554px;
	min-height: 602px;
	background-color: #EBEBEB;
	color: black;
	font-family: Meiryo, YuGothic, "Yu Gothic medium", "Hiragino Sans", "sans-serif";
	font-size: 16px;
}

.container {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#main {
	width: 554px;
	height: 602px;
	text-align: center;
	border: solid 1px #DADCE0;
	border-radius: 10px;
	box-shadow: 0 0 4px rgba(0,0,0,0.25);
	background-color: white;
}

h1 {
	margin-top: 70px;
}

h2 {
	margin-top: 18px;
	font-size: 24px;
	font-weight: normal;
}

p#msg {
	margin: 22px 0;
}

#error {
	width: 100%;
	height: 40px;
}

#error p {
	line-height: 40px;
	color: #F00;
	font-weight: bold;
}

input[type="text"],
input[type="password"] {
	width: 282px;
	height: 30px;
	margin: 4px 0;
	padding: 0 8px;
	border: solid 1px #DADCE0;
	border-radius: 3px;
	font-size: 16px;
}

input[type="submit"] {
	width: 300px;
	height: 44px;
	margin: 62px 0;
	background-color: #707070;
	border: none;
	border-radius: 6px;
	font-size: 18px;
	color: white;
}

input[type="submit"]:hover {
	background-color: #909090;
}

p#copyright {
	font-size: 12px;
}
