.auth-stage {
  display: grid;
  min-height: calc(100vh - 160px);
  place-items: center;
  padding-top: 44px;
  padding-bottom: 88px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 36px;
  border: 1px solid #ececea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .08);
}

.auth-card h1 {
  margin: 0 0 22px;
  color: #000;
  font-family: var(--fc-font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.auth-sub {
  margin: -14px 0 22px;
  color: #444;
  font-size: 15px;
  line-height: 1.4;
}

.auth-social {
  display: grid;
  gap: 10px;
}

.auth-provider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1.5px solid #d8d6d0;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.auth-provider:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: rgba(0, 0, 0, .46);
  font-family: var(--fc-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ececea;
}

.auth-submit {
  width: 100%;
  min-height: 44px;
  justify-content: center;
}

.auth-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .auth-stage {
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 72px;
  }

  .auth-card {
    padding: 24px;
  }
}
