.auth-bg {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, #f7f9ff 0%, #f5f7fb 45%, #f3f5f9 100%);
  background-image:
    radial-gradient(#e9edf5 1px, transparent 1px),
    radial-gradient(#e9edf5 1px, transparent 1px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  color: #1b1f2a;
  display: flex;
  flex-direction: column;
}

.auth-wrapper {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 40px 16px 16px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.logo-pill {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e8f0ff;
  color: #2454ff;
  font-size: 20px;
}

.divider {
  position: relative;
  text-align: center;
  color: #8a94a6;
  font-size: 12px;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: #e3e7ef;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.divider span {
  background: #fff;
  padding: 0 10px;
}

.auth-footer {
  text-align: center;
  color: #8a94a6;
  font-size: 12px;
  padding: 16px 0 24px;
}
