@charset "UTF-8";
.container {
  height: 100vh;
}

.header {
  width: 100%;
  height: 80px;
  background-color: rgb(234, 236, 246);
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}
.header .header-title {
  font-size: 20px;
}

/* ページ全体の基本スタイル */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

main {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
}

/* 登録フォームコンテナ */
.register-container {
  max-width: 450px;
  width: 90%;
  min-width: 330px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  box-sizing: border-box;
  /* 見出しスタイル */
}
.register-container h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  width: auto;
}
@media screen and (max-width: 450px) {
  .register-container h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    width: auto;
  }
}
.register-container #register-form {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: center;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  /* ボタンスタイル */
}
.register-container #register-form .form-item {
  /* フレックスボックスに指定 */
  display: flex;
  /* 縦に並べる */
  flex-direction: column;
  /* 子要素を水平方向に中央に配置 */
  justify-content: left;
  /* 子要素を垂直方向に中央に配置 */
  align-items: center;
  /* ラベルスタイル */
  /* 入力フィールドスタイル */
}
.register-container #register-form .form-item label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.register-container #register-form .form-item input {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.register-container #register-form button {
  background-color: #007BFF;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}
.register-container #register-form button:hover {
  background-color: #0056b3;
}

/* ポップアップのスタイル */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  /* 非表示時のスタイル */
  /* ポップアップコンテンツ */
}
.popup.hidden {
  display: none;
}
.popup .popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* 閉じるボタン */
}
.popup .popup-content button {
  background-color: #007BFF;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}
.popup .popup-content button:hover {
  background-color: #0056b3;
}/*# sourceMappingURL=style.css.map */