/* 全体のスタイル */
body {
	font-family: Arial, sans-serif;
	background-color: #f9f9f9;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

/* フォームのスタイル */
form {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 24px;
	width: 400px;
	box-sizing: border-box;
}

/* ヘッダー */
form h2 {
	font-size: 20px;
	margin-bottom: 16px;
	text-align: center;
}

/* 入力グループ */
.input-group {
	margin-bottom: 20px;
	position: relative;
}

.input-group label {
	display: block;
	font-size: 14px;
	margin-bottom: 6px;
	color: #555;
}

.input-group input {
	width: 100%;
	padding: 10px 12px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	outline: none;
	box-sizing: border-box;
}

.input-group input:focus {
	border-color: #6c63ff;
	box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
}

/* ボタン */
button {
	background-color: #3cffc1;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 16px;
	font-weight: bold;
	padding: 12px;
	cursor: pointer;
	width: 100%;
	transition: background-color 0.3s ease;
}

button:hover {
	background-color: #32e0a6;
}

/* エラーまたは成功メッセージ */
.message {
	text-align: center;
	font-size: 14px;
	color: red;
	margin-top: 10px;
}
