.signup-page {
  min-height: calc(100dvh - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.signup-page__card {
  width: min(100%, 420px);
  padding: 2.5rem;
  border: 1px solid #c0c0c0;
  border-radius: 16px;
  background: #f5f5f5;
  box-shadow: 0 12px 40px rgb(0 0 0 / 8%);
}

.signup-page__header {
  margin-bottom: 2rem;
}

.signup-page__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.signup-page__header h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
}

.signup-page__subtitle {
  margin: 0.75rem 0 0;
  color: #737373;
}

#signup-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

#signup-form > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#signup-form label {
  font-size: 0.875rem;
  font-weight: 600;
}

#signup-form input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  box-sizing: border-box;
}

#signup-form input:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgb(0 0 0 / 8%);
}

#signup-form button {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

#signup-form button:hover {
  background: #333;
}

#signup-form p {
  margin: 0;
  font-size: 0.8rem;
  color: #737373;
}
.signup-page__footer {
  margin: 1.5rem 0 0;
  text-align: center;
  color: #737373;
  font-size: 0.875rem;
}

.signup-page__footer a {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 480px) {
  .signup-page {
    padding: 1rem;
  }

  .signup-page__card {
    padding: 2rem 1.5rem;
    border: 0;
    box-shadow: none;
  }
}
