.auth-layout-life-rpg {
  width: min(460px, calc(100% - 2rem));
  min-height: 100vh;
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.auth-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: left;
}

.auth-brand-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-panel);
  color: var(--color-primary);
  font-size: 1.45rem;
  box-shadow: var(--shadow-panel);
}

.auth-brand .section-kicker {
  margin-bottom: 0.1rem;
}

.auth-brand h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3rem);
  letter-spacing: -0.045em;
}

.auth-layout-life-rpg .auth-form {
  width: 100%;
}

.auth-layout-life-rpg .auth-form h2 {
  margin-bottom: 0.25rem;
}

@media (max-width: 520px) {
  .auth-layout-life-rpg {
    width: min(100% - 1rem, 460px);
    min-height: 100svh;
    padding: 1rem 0;
  }

  .auth-brand {
    justify-content: flex-start;
    padding-inline: 0.5rem;
  }
}
