.auth-page {
  min-height: 100svh;
}

.auth-shell {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 48px 24px;
}

.auth-brand {
  position: absolute;
  top: 28px;
  left: 32px;
}

.auth-brand img {
  width: auto;
  height: 34px;
}

.auth-card {
  width: min(100%, 460px);
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.auth-note {
  color: var(--muted);
  font-size: 14px;
}

.auth-card h1 {
  margin-top: 18px;
  font-size: 54px;
}

.auth-card > p:not(.auth-note) {
  margin-top: 16px;
  color: var(--muted-strong);
  font-size: 18px;
}

.auth-form {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 32px;
  padding-bottom: 2px;
  overflow: hidden;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.auth-feedback {
  color: var(--muted);
  font-size: 13px;
}

.auth-feedback.is-success {
  color: var(--blue);
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 14px;
}

.auth-links a:hover {
  color: var(--paper);
}

@media (max-width: 720px) {
  .auth-brand {
    position: static;
    justify-self: start;
    margin-bottom: 32px;
  }

  .auth-shell {
    place-items: start center;
  }

  .auth-card {
    padding: 28px;
  }

  .auth-card h1 {
    font-size: 42px;
  }
}
