/* 全体のレイアウト */
body {
	font-family: 'Arial', sans-serif;
	background-color: #f5f5f5;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

/* フォームのスタイル */
#login-form {
	background-color: #fff;
	border: 1px solid #e0e0e0;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	width: 350px;
	text-align: center;
}

h2 {
	color: #333;
	font-size: 18px;
	margin-bottom: 20px;
}

/* ラベルとインプットのデザイン */
.input-group {
	margin-bottom: 20px;
	text-align: left;
}

label {
	font-size: 14px;
	color: #666;
	margin-bottom: 5px;
	display: block;
}

input[type="text"], input[type="password"] {
	width: 100%;
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 6px;
	outline: none;
	background-color: #f9f9f9;
	box-sizing: border-box;
}

input[type="text"]:focus, input[type="password"]:focus {
	border-color: #007bff;
	background-color: #fff;
}

/* パスワードリンク */
.link-group {
	margin-bottom: 20px;
	text-align: right;
}

.link-group a {
	font-size: 12px;
	color: #007bff;
	text-decoration: none;
}

.link-group a:hover {
	text-decoration: underline;
}

/* ボタンのスタイル */
.button-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.login-button {
	background-color: #28d89e;
	color: white;
	border: none;
	border-radius: 6px;
	padding: 10px 0;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.login-button:hover {
	background-color: #1cb685;
}

.register-button {
	background-color: transparent;
	color: #007bff;
	border: 1px solid #007bff;
	border-radius: 6px;
	padding: 10px 0;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.register-button:hover {
	background-color: #007bff;
	color: white;
}

/* エラーメッセージ */
.error-message {
	color: red;
	font-size: 12px;
	margin-top: 10px;
}
.guest-login-button {
	display: inline-block;
	background-color: #3498db;
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	font-size: 16px;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.guest-login-button:hover {
	background-color: #2980b9;
}
