body {
  background: #f2f6fa;
  font-family: 'Segoe UI', 'Meiryo', sans-serif;
  margin: 0;
  padding: 0;
  --color-link: 18, 18, 18;
}
.general-form-container {
  max-width: 370px;
  margin: 60px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1.5px solid #d2d2d2;
  padding: 32px 24px 24px 24px;
  text-align: center;
}
.general-title {
  font-size: 1.4em;
  color: #1a3c1a;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.general-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.general-form input[type='text'],
.general-form input[type='password'],
.general-form input[type='tel'] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #b2b2b2;
  border-radius: 5px;
  font-size: 1em;
  background: #fafbfc;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.general-form input[type='text']:focus,
.general-form input[type='password']:focus {
  border-color: #00793e;
  background: #fff;
}
.general-btn {
  width: 100%;
  padding: 12px 0;
  background: #00793e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.general-btn:hover {
  background: #005c2a;
}
.general-links {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.general-link {
  color: rgb(var(--color-link));
  text-decoration: underline;
  font-size: 0.97em;
  transition: color 0.2s;
}
.general-link:hover {
  color: #005c2a;
  text-decoration: underline;
}

.general-link-outline {
  display: inline-block;
  padding: 10px 10px;
  background-color: white;
  color: #005c2a;
  text-align: center;
  text-decoration: none;
  border: 2px solid #005c2a;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
  font-weight: bold;
}

.general-link-outline:hover {
  background: #f2f6fa;
  color: #005c2a;
  text-decoration: none;
}

.general-divider {
  margin: 22px 0 14px 0;
  border-top: 1px solid #e0e0e0;
}
.general-btn-outline {
  background: #fff;
  color: #00793e;
  border: 1.5px solid #00793e;
  margin-bottom: 0;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}
.general-btn-outline:hover {
  background: #f2f6fa;
  color: #005c2a;
}
.general-form label,
.general-label {
  display: block;
  text-align: left;
  margin-bottom: 4px;
  color: #333;
  font-size: 0.98em;
  font-weight: 500;
}
@media (max-width: 480px) {
  .general-form-container {
    margin: 24px 12px;
    padding: 24px 16px;
  }
  .general-title {
    font-size: 1.2em;
  }
  .general-form input[type='text'],
  .general-form input[type='password'] {
    font-size: 0.95em;
  }
  .general-btn,
  .general-btn-outline {
    font-size: 0.95em;
    padding: 10px 0;
  }
  .general-links {
    font-size: 0.9em;
  }
}
.general-birth-select {
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 8px;
  border: 1.5px solid #b2b2b2;
  border-radius: 5px;
  font-size: 1em;
  background: #fafbfc;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.general-birth-select:focus {
  border-color: #00793e;
  background: #fff;
}
.error-message {
  color: #c00;
  margin-bottom: 16px;
  text-align: center;
  font-size: 0.98em;
} 