.auth-card {
  padding: 30px 26px 28px;
  animation: rise-in 0.55s var(--ease-out) both;
  max-width: 420px;
  margin: 0 auto;
}

.auth-field {
  margin-bottom: 16px;
}

.auth-field--row {
  display: flex;
  gap: 12px;
}
.auth-field--row > div {
  flex: 1;
}

.btn__spinner {
  display: none;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border-radius: 50%;
  border: 2px solid rgba(18, 33, 10, 0.35);
  border-top-color: var(--acid-ink);
  animation: spin 0.7s linear infinite;
  vertical-align: -3px;
}
.btn.is-loading .btn__label {
  opacity: 0.7;
}
.btn.is-loading .btn__spinner {
  display: inline-block;
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--text-mid);
}
.auth-switch a {
  color: var(--acid);
  text-decoration: none;
}
.auth-switch a:hover {
  text-decoration: underline;
}

.auth-logged-in {
  text-align: center;
}
.auth-logged-in__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-950);
  background: var(--acid);
}
