.sign_up {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0;
}

.sign_up .container {
  background: white;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.sign_up .title {
  font-size: 2em;
  color: #ffc107;
}

.sign_up .description {
  font-size: 1em;
  margin: 1em 0;
  color: #333;
}

.sign_up .sub-description {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 1.5em;
}

input[type="email"] {
  width: 100%;
  padding: 1em;
  margin: 0.5em 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 1em;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
}

button:hover {
  background-color: #333;
}

.login, .note {
  font-size: 0.8em;
  color: #777;
  margin-top: 1em;
}

a {
  color: #000;
  text-decoration: none;
}


/* オーバーレイ要素のスタイル */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒色 */
  z-index: 999; /* ローディングよりも一つ下のレイヤーに表示 */
}

/* ローディング要素のスタイル */
.loading {
  display: none;
  border: 4px solid rgba(0, 0, 0, 0.2);
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 64px;
  height: 64px;
  animation: spin 1s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -32px;
  margin-left: -32px;
  z-index: 1000; /* ローディングが最前面に表示されるようにする */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}