.flow-screen.welcome {
  z-index: 40;
  padding: 44px 26px 0;
  display: flex;
  flex-direction: column;
  color: #111216;
  background:
    radial-gradient(310px 310px at 52% 31%, rgba(68, 133, 222, .24), transparent 72%),
    radial-gradient(350px 310px at 24% 74%, rgba(236, 91, 110, .19), transparent 75%),
    linear-gradient(180deg, #f9fbff, #eef4fd 58%, #f7ebef);
}
.welcome-center {
  flex: 1;
  position: relative;
}
.welcome-brand {
  position: absolute;
  top: 27%;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.welcome-brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}
.welcome-brand h1 {
  margin: 14px 0 0;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.025em;
  white-space: nowrap;
}
.welcome-brand h1 strong { font-weight: 800; }
.welcome-tagline {
  width: 190px;
  margin: 15px 0 0;
  color: #687184;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
}
.welcome-tagline span {
  color: var(--red);
  font-weight: 700;
}
.welcome-actions {
  position: absolute;
  bottom: 34px;
  left: 50%;
  width: 284px;
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  transform: translateX(-50%);
}
.auth-pill {
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}
.auth-pill--light {
  color: #050706;
  background: white;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}
.auth-pill--dark {
  color: white;
  background: #07080a;
  box-shadow: none;
}
.welcome-action-note {
  margin: 1px auto 0;
  color: rgba(28, 30, 36, .55);
  font-size: 9px;
  line-height: 1.35;
  text-align: center;
}
.auth-pill:active { transform: scale(.98); }


.auth-pill { text-decoration: none; }
