/* 全体の基本スタイル */
body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #eef5fb;
  margin: 0;
  padding: 0;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
}

.form-box {
  background-color: #fff;
  padding: 30px;
  margin: 40px auto;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* ラベルとテキストフォーム */
label {
  display: block;
  margin-top: 15px;
  text-align: left;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* 送信ボタン（幅は内容に応じて自動、中央寄せ） */
input[type="submit"],
button {
  padding: 12px 30px;
  font-size: 1rem;
  color: white;
  background-color: #4caf50;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

input[type="submit"]:hover,
button:hover {
  background-color: #45a049;
}

/* ステップバー */
.step-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.step {
  background-color: #ccc;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
}

.step.active {
  background-color: #4caf50;
}

/* リンク */
a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* フッター */
footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
}
