/* フォームコンテナのスタイル */
.form_container {
  /* max-width: 600px;
  margin: 50px auto; */
  padding: 10px;
  /* border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9; */
}

/* フォームタイトルのスタイル */
.form_container h2 {
  text-align: center;
  color: #fa61bd;
  margin-bottom: 20px;
}

/* フォーム全体のスタイル */
.form {
  display: flex;
  flex-direction: column;
}

/* 各フォームグループのスタイル */
.form-group {
  margin-bottom: 15px;
}

/* ラベルのスタイル */
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: bold;
}

/* 入力フィールドのスタイル */
.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* フォーカス時の入力フィールドのスタイル */
.form-group input:focus {
  border-color: #fa61bd;
  outline: none;
}

/* エラーメッセージのスタイル */
.form-group .errorlist {
  color: #ff4d4d;
  margin-top: 5px;
  list-style: none;
  padding: 0;
}

/* ボタンコンテナのスタイル */
.button-container {
  text-align: center;
  margin-top: 20px;
}

button.cta-button {
  /* 上記 .cta-button と同様のスタイルを適用 */
  display: inline-block;
  padding: 10px 40px;
  background-color: #fa61bd; /* ボタンの背景色 */
  color: #ffffff; /* ボタン内の文字色 */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
  border: none; /* デフォルトのボーダーを削除 */
  width: 100%;
  max-width: 100%;
}
/* パスワード強度表示用（オプション） */
#password-strength {
  margin-top: 5px;
  font-weight: bold;
  text-align: center;
}
