body {
  display: flex;
  justify-content: center;
  align-items: center;

  background-image: url("/image/background.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

/* フォームとタイトルを包括するコンテナ */
.login-container {
  text-align: center;
}

.title {
  font-size: 3.5rem;
  color: var(--Headline);
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* ログインポップアップのスタイル（グラスモーフィズム） */
.popup.login {
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* 要素間のスペース */
  padding: 40px;
  background: rgb(53, 88, 53);
  border-radius: 16px;
}

.popup.login input[type="text"] {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding: 12px 5px 8px;
  /* パディングを調整 */
  color: var(--Headline);
  font-size: 1.1rem;
  width: 280px;
  transition: border-color 0.3s ease;
}

/* ボタンのスタイル */
.popup input[type=button] {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: var(--button);
  color: var(--background-color);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  /* ボタンの上のマージン */
}

.popup button:hover {
  background: var(--button-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.popup button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}