.join-page {
  overflow: auto;
  min-height: 100%;
  height: auto;
}

.join-main {
  position: relative;
  z-index: 5;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: max(2rem, env(safe-area-inset-top)) 1.25rem
    max(2rem, env(safe-area-inset-bottom));
  text-align: center;
  gap: 1.75rem;
}

.join-brand {
  display: flex;
  justify-content: center;
  width: 100%;
}

.join-logo {
  display: block;
  width: min(72vw, 280px);
  height: auto;
  object-fit: contain;
}

.join-form {
  width: min(100%, 420px);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.join-shell {
  width: 100%;
}

.join-shell input {
  width: 100%;
  text-align: center;
  padding: 1.15rem 1rem;
  font-size: 1.05rem;
}

.join-submit {
  width: 100%;
  justify-content: center;
  border: 0;
  padding: 1rem 1.2rem;
  font-size: 1rem;
}

.join-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.join-status {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.join-status.is-ok {
  color: var(--cyan);
}

.join-status.is-err {
  color: #ff8f8f;
}

.join-count {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(232, 240, 255, 0.45);
}

.join-count strong {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
}
