/**
 * Marketing login / sign-up — class names match archive Webflow HTML (no Webflow JS).
 * Shared tokens: :root from chat-box.css (--dark-blue-background, --brand-header, etc.).
 * --webflow-border: legacy name used in exported rules → maps to accent border token.
 */
:root {
  --webflow-border: var(--wm-accent-border, #136df4);
}

body.wm-marketing-auth {
  margin: 0;
  min-height: 100vh;
  background-color: var(--dark-blue-background);
}

/* Navbar — webmoz AI CTA (shared with home / about / pricing / ai-university marketing shells) */
body.wm-marketing-auth .navbar-webmoz-ai {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

body.wm-marketing-auth .wm-premium-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  background: rgba(26, 26, 26, 0.95);
  background-clip: padding-box;
  transition: box-shadow 0.3s ease;
}

body.wm-marketing-auth .wm-premium-button::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(45deg, #fe8963, #136dfa, #fe8963);
  border-radius: inherit;
  z-index: -1;
  animation: wm-premium-border-shift 3s ease infinite;
  background-size: 300% 300%;
  transition:
    filter 0.3s ease,
    box-shadow 0.3s ease;
}

body.wm-marketing-auth .navbar-webmoz-ai:hover .wm-premium-button::before,
body.wm-marketing-auth
  .navbar-webmoz-ai:focus-visible
  .wm-premium-button::before {
  filter: brightness(1.2);
  box-shadow:
    0 0 15px rgba(254, 137, 99, 0.6),
    0 0 15px rgba(19, 109, 250, 0.6);
}

body.wm-marketing-auth .wm-premium-button__text {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--brand-header, sans-serif);
  font-weight: 500;
  font-size: 14px;
}

body.wm-marketing-auth .wm-premium-button__sparkle {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  color: #fff;
  transition: transform 0.3s ease;
}

body.wm-marketing-auth .navbar-webmoz-ai:hover .wm-premium-button__sparkle,
body.wm-marketing-auth
  .navbar-webmoz-ai:focus-visible
  .wm-premium-button__sparkle {
  transform: scale(1.1);
}

body.wm-marketing-auth .wm-premium-button__sparkle-main,
body.wm-marketing-auth .wm-premium-button__sparkle-small {
  transition: color 0.3s ease;
}

body.wm-marketing-auth .navbar-webmoz-ai:hover .wm-premium-button__sparkle-main,
body.wm-marketing-auth
  .navbar-webmoz-ai:focus-visible
  .wm-premium-button__sparkle-main {
  animation: wm-premium-sparkle-spin 3s linear infinite;
  color: #fe8963;
}

body.wm-marketing-auth
  .navbar-webmoz-ai:hover
  .wm-premium-button__sparkle-small,
body.wm-marketing-auth
  .navbar-webmoz-ai:focus-visible
  .wm-premium-button__sparkle-small {
  animation: wm-premium-sparkle-spin-reverse 3s linear infinite;
  color: #136dfa;
}

@keyframes wm-premium-sparkle-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes wm-premium-sparkle-spin-reverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes wm-premium-border-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ---------- Toast ---------- */
.notification {
  z-index: 10000;
  border: 1px solid rgba(74, 222, 128, 0.55);
  background-color: rgba(20, 83, 45, 0.35);
  opacity: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-family: var(--brand-header);
  color: var(--lightest-white);
  border-radius: 8px;
  max-width: min(420px, 92vw);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  position: fixed;
  inset: 100px 20px auto auto;
  transform: translate(0, -10px);
}

.notification.is-visible {
  display: block;
  opacity: 1;
}

/* ---------- Auth layout (from published webmoz.webflow.css) ---------- */
.signup-section {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.signup-container {
  background-color: var(--dark-blue-background);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  width: 100%;
}

.grid-login {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 50% 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  padding: 2rem;
  display: grid;
}

.signup-heading-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.slider-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 570px;
  height: auto;
  display: flex;
  overflow: hidden;
}

.tabs {
  flex-flow: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
}

.tabs-content {
  overflow: visible;
  width: 100%;
  order: 1;
}

.tabs-menu {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  gap: 0.35rem;
  position: relative;
  inset: auto 0% 0%;
  order: 2;
}

/* Webflow tab visibility (no webflow.js) */
.tabs .w-tab-pane,
.tabs .tab-pane.w-tab-pane {
  display: none;
}

.tabs .w-tab-pane.w--tab-active,
.tabs .tab-pane.w-tab-pane.w--tab-active {
  display: block;
}

.slider-base {
  justify-content: center;
  align-items: center;
  display: flex;
}

.feature-card {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #0707093d;
  background-image: linear-gradient(#ffffff05, #fff0);
  border: 1px solid #1b1b1d;
  border-radius: 24px;
  padding: 4px;
  position: relative;
}

/* Accent line — same glow language as .feature-line-divider (chat-box.css) */
.feature-line-login-small {
  background-image: linear-gradient(
    90deg,
    var(--light-border),
    var(--text-blue)
  );
  align-self: center;
  width: 75px;
  height: 2px;
  position: relative;
  margin-bottom: 1rem;
  box-shadow:
    0 33px 80px #fce48f99,
    0 16px 40px #bb8ffca3,
    0 10px 24px #fce48f7a,
    0 12px 24px #bb8ffc8f,
    0 4.2px 10.5px #fce48f4d,
    0 2.5px 6.25px #bb8ffc40,
    0 1.5px 3.6px #fce48f33,
    0 0.66px 1.6px #bb8ffc24;
}

.feature-line-login {
  background-image: linear-gradient(90deg, var(--peach), var(--text-blue));
  align-self: center;
  width: 150px;
  height: 2px;
  margin-left: 24px;
  position: absolute;
  inset: 0 auto auto;
  box-shadow:
    0 33px 80px #fce48f99,
    0 16px 40px #bb8ffca3,
    0 10px 24px #fce48f7a,
    0 12px 24px #bb8ffc8f,
    0 4.2px 10.5px #fce48f4d,
    0 2.5px 6.25px #bb8ffc40,
    0 1.5px 3.6px #fce48f33,
    0 0.66px 1.6px #bb8ffc24;
}

.feature-heading {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 24px 36px;
  display: flex;
}

.icon-wrap {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #ffffff03;
  border: 1px solid #ffffff0a;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 7px 8px;
  display: flex;
  position: relative;
  box-shadow: inset 0 -4px 8px #ffffff0f;
}

.feature-icon {
  z-index: 2;
  flex: none;
  width: 68px;
  height: 68px;
  position: relative;
}

.icon-blur {
  z-index: 0;
  pointer-events: none;
  position: absolute;
}

.h6-heading {
  color: #fff;
  letter-spacing: -0.1px;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#fff, #ffffffa3);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.feature-inner-video {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  scrollbar-width: none;
  border: 1px solid #1b1b1d;
  border-radius: 12px 12px 20px 20px;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 34px;
  display: flex;
  position: relative;
  overflow-y: auto;
}

.wrap-v-x-small {
  width: 100%;
}

.wrap-h-xsmall.wrap-child.conversation {
  flex-direction: column;
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.wrap-h-xsmall.wrap-child.conversation .login-badge {
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.login-badge.aimess {
  align-self: flex-start;
}

.login-badge {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: default;
  background-color: #ffffff0a;
  border: 0.8px solid #ffffff1a;
  border-radius: 40px;
  align-items: center;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.7;
  display: flex;
  box-shadow: inset 0 -4px 12px #ffffff1a;
}

.login-badge.usermess {
  justify-content: flex-end;
  align-items: center;
  align-self: flex-end;
  padding-top: 10px;
  padding-bottom: 10px;
}

.icon-x-medium {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  border-radius: 50%;
  overflow: hidden;
}

.icon-x-medium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrap-video-icon {
  box-shadow: inset 0 0 20px 20px var(--dark-blue-background);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 200px;
  height: 250px;
  position: relative;
}

.login-page-tab-visual {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 160px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(40, 130, 255, 0.45),
      transparent 55%
    ),
    radial-gradient(circle at 70% 60%, rgba(255, 106, 0, 0.3), transparent 50%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid #ffffff14;
}

.login-page-tab-visual__wave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(42%, 140px);
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%) scale(0.35);
  background: radial-gradient(
    circle,
    rgba(255, 200, 120, 0.42) 0%,
    rgba(35, 110, 255, 0.3) 35%,
    rgba(25, 80, 250, 0.12) 55%,
    transparent 72%
  );
  animation: wm-marketing-tab-wave 2.8s ease-out infinite;
  will-change: transform, opacity;
}

.login-page-tab-visual__wave--2 {
  animation-delay: 0.95s;
  width: min(58%, 190px);
  background: radial-gradient(
    circle,
    rgba(30, 115, 255, 0.38) 0%,
    rgba(0, 104, 252, 0.2) 45%,
    transparent 70%
  );
}

.login-page-tab-visual__wave--3 {
  animation-delay: 1.9s;
  width: min(72%, 240px);
  background: radial-gradient(
    circle,
    rgba(255, 106, 0, 0.25) 0%,
    rgba(255, 200, 100, 0.15) 40%,
    transparent 68%
  );
}

@keyframes wm-marketing-tab-wave {
  0% {
    transform: translate(-50%, -50%) scale(0.35);
    opacity: 0.65;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.35);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .login-page-tab-visual__wave {
    animation: none;
    opacity: 0.22;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.login-badge-icon {
  position: relative;
  z-index: 2;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: default;
  background-color: #ffffff0a;
  border: 0.8px solid #ffffff1a;
  border-radius: 9999px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 125px;
  padding: 10px;
  font-size: 12px;
  line-height: 1.7;
  display: flex;
  box-shadow:
    inset 0 -4px 12px #ffffff1a,
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.image-17 {
  width: 48px;
  height: 48px;
}

.fade-small-bottom {
  background-image: linear-gradient(
    180deg,
    transparent,
    var(--dark-blue-background)
  );
  pointer-events: none;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  height: 5rem;
  position: absolute;
  inset: auto 0% 0;
}

.standard-tab {
  opacity: 0.7;
  color: #fffc;
  background-color: #0000;
  flex: 1 1 0;
  min-width: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0.25rem 16px;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  border: none;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  color: inherit;
  text-align: center;
  position: relative;
}

.standard-tab__row {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.standard-tab.w--current {
  opacity: 1;
  color: #fff;
  background-color: #0000;
  position: relative;
}

.tab-image {
  flex: 0 0 auto;
  width: 26px;
  height: auto;
  margin-right: 0;
}

.load-bar-base {
  background-color: #fff3;
  width: 100%;
  max-width: 100%;
  height: 4px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
  border-radius: 2px;
}

.load-bar {
  background-color: #fff;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  will-change: width;
}

.hero-badge-2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--light-white);
}

.hero-badge-2.betaphase {
  margin-top: 12px;
  background: rgba(0, 255, 170, 0.14);
  border: 1px solid rgba(0, 255, 170, 0.4);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 0 24px rgba(0, 255, 170, 0.18);
  color: #c6fff0;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Decorative neon check (matches app venture-status markup); non-interactive */
.hero-badge-2 .neon-checkbox.hero-badge-2__neon {
  --size: 16px;
  cursor: default;
  pointer-events: none;
}

.signup-wrapper {
  border: 1px solid var(--webflow-border);
  background-color: var(--black-blue-black);
  box-shadow: 0 0 10px 5px var(--webflow-blue);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 570px;
  padding: 3rem;
  display: flex;
}

.wrap-bot {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 360px;
  display: flex;
}

.login_signup_wrap {
  border: 1px solid var(--light-border);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  color: #ffffffb3;
  background-color: #0d0d11;
  border-radius: 15px;
  width: 250px;
  padding: 6px 0;
  text-decoration: none;
  transition: background-color 0.2s;
  display: block;
  box-shadow: 0 0 2px 2px #7badf14d;
}

.login_signup_wrap:hover {
  background-color: #111016;
  box-shadow: 0 0 5px 5px #7badf1b5;
}

.mb-15 {
  font-family: var(--montserrat-para);
  text-align: center;
  font-size: 12px;
}

.sign-in__flex {
  grid-column-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.p-25 {
  font-family: var(--brand-header);
  color: #fff;
  white-space: nowrap;
  font-size: 16px;
  margin: 0;
}

.form-sign-in,
.form-signup {
  margin-top: 0;
  margin-bottom: 0;
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.heading-9 {
  font-family: var(--brand-header);
  text-align: center;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#fff, #ffffffa3);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
}

.login-form {
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.google-login-button-wrap {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}

.google-login-button-wrap .google-login-button {
  margin-bottom: 0;
}

.google-login-recommended-pill {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(28%, -42%);
  z-index: 1;
  pointer-events: none;
  font-family: var(--montserrat-para);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #fff;
  background: linear-gradient(145deg, #22c55e, #15803d);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 4px 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.google-login-recommended-pill[hidden] {
  display: none;
}

.google-login-last-used-pill {
  background: linear-gradient(145deg, #60a5fa, #1d4ed8);
  border: 1px solid rgba(255, 255, 255, 0.45);
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 8.5px;
  font-weight: 700;
}

.google-login-button {
  grid-column-gap: 10px;
  column-gap: 10px;
  background-color: var(--lightest-white);
  opacity: 0.9;
  font-family: var(--brand-header);
  color: var(--light-white);
  border: 1px solid #ffffff80;
  border-radius: 10px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 16px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition:
    opacity 0.2s,
    box-shadow 0.2s;
  display: inline-flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: 0 0 10px 5px #0003;
  cursor: pointer;
}

.google-login-button:hover {
  opacity: 1;
  color: var(--lightest-white);
  border-color: #ffffffd1;
  box-shadow: 0 0 10px 5px #ffffff3d;
}

.google-login-button.auth-google-busy {
  pointer-events: none;
  opacity: 0.75;
}

.text-block-23 {
  font: inherit;
}

.googleicon {
  flex: 0 0 auto;
  width: auto;
  height: 22px;
}

.googlelogin,
.googlesignin {
  flex: 0 1 auto;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

.label {
  font-family: var(--montserrat-para);
  color: #ffffffb3;
  text-align: center;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
}

.form-field {
  flex-flow: column;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  display: flex;
}

.input {
  font-family: var(--montserrat-para);
  color: #fff;
  background-color: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 30px;
  width: 75%;
  height: 48px;
  margin-bottom: 0;
  padding: 20px 20px 18px;
  transition: border 0.2s;
  box-sizing: border-box;
}

.input:focus {
  border-color: #fff;
  outline: none;
}

.input::placeholder {
  color: #fffc;
  font-size: 15px;
  font-weight: 400;
}

.form-flex {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  display: flex;
}

.checkbox-wrap {
  position: relative;
  cursor: pointer;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 12px;
  display: flex;
  gap: 10px;
}

/* Native input on top for hit target; visual box follows in DOM for input:checked + … */
.checkbox-wrap .wm-checkbox-native {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.checkbox-wrap .w-checkbox-input.checkbox-3 {
  flex: none;
  width: 1.125rem;
  height: 1.125rem;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.checkbox-wrap
  .wm-checkbox-native:focus-visible
  + .w-checkbox-input.checkbox-3 {
  outline: 2px solid rgba(147, 197, 253, 0.85);
  outline-offset: 2px;
}

.checkbox-wrap .wm-checkbox-native:checked + .w-checkbox-input.checkbox-3 {
  background-color: rgba(37, 99, 235, 0.55);
  border-color: rgba(191, 219, 254, 0.95);
}

.checkbox-wrap
  .wm-checkbox-native:checked
  + .w-checkbox-input.checkbox-3::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  margin-top: -2px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  margin-bottom: 0;
  font-family: var(--montserrat-para);
  font-size: 14px;
  font-weight: 500;
  color: var(--light-white);
}

.link {
  color: #fff;
  text-align: right;
  font-family: var(--montserrat-para);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.button-wrap {
  width: 100%;
  margin-top: 20px;
}

.main-button-n {
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1px;
  text-decoration: none;
  transition: all 0.4s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(37, 99, 235, 0.45);
}

.main-button-n:hover {
  box-shadow: 0 0 80px rgba(59, 130, 246, 0.65);
}

.button-bg {
  z-index: 1;
  background-color: var(--black-blue-black);
  opacity: 1;
  text-align: center;
  border-radius: 8px;
  width: 100%;
  position: relative;
}

.border-gradient {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  min-height: 550px;
  position: absolute;
  transform: rotate(-55deg);
  animation: wm-marketing-border-spin 6s linear infinite;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(255, 255, 255, 0.2) 0deg,
    rgba(255, 255, 255, 0) 60deg,
    rgba(255, 255, 255, 0) 310deg,
    rgba(255, 255, 255, 0.5) 360deg
  );
}

.main-button-n:hover .border-gradient {
  animation-duration: 4s;
}

@keyframes wm-marketing-border-spin {
  to {
    transform: rotate(295deg);
  }
}

.login-button {
  z-index: 2;
  opacity: 1;
  font-family: var(--brand-header);
  text-align: center;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  background-color: #151515;
  background-image: linear-gradient(90deg, #ffffffb3, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 400;
  display: flex;
  position: static;
  border: none;
  cursor: pointer;
}

.button-inside {
  z-index: 2;
  opacity: 1;
  font-family: var(--brand-header);
  text-align: center;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  background-color: #151515;
  background-image: linear-gradient(90deg, #ffffffb3, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 400;
  display: flex;
  border: none;
  cursor: pointer;
}

.success-message-2,
.error-message-2 {
  display: none;
}

.buttons-wrap {
  grid-column-gap: 22px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.caps-login {
  font-family: var(--brand-header);
  color: var(--white);
}

/* ---------- Footer (marketing) ---------- */
.footer {
  z-index: 11;
  background-color: var(--dark-blue-background);
  font-family: var(--montserrat-para);
  position: relative;
  overflow: hidden;
}

.w-layout-blockcontainer.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer-component {
  width: 100%;
}

.footer-content {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  justify-content: space-between;
  margin-bottom: 4rem;
  display: flex;
}

.footer-left {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.branding-image img {
  max-height: 48px;
  width: auto;
}

.footer-paragraph {
  max-width: 73ch;
  margin-top: 2rem;
  margin-bottom: 3.25rem;
}

.text-size-huge {
  font-size: 2.5rem;
}

.text-size-huge.footer {
  font-size: 1.6rem;
  line-height: 1.35;
  color: var(--light-white);
}

.text-span-10 {
  color: #fff;
}

.footer-right {
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
  padding-top: 4rem;
  display: flex;
}

.footer-address {
  flex-flow: column;
  gap: 0.75rem;
  display: flex;
}

.text-size-medium {
  font-size: 1rem;
  color: var(--light-white);
}

.text-weight-light {
  font-weight: 400;
}

.opacity-80 {
  opacity: 0.8;
}

.divider-footer {
  opacity: 0.1;
  background-color: #fbfbfb;
  width: 100%;
  height: 1px;
  margin-bottom: 4rem;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.credits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.button {
  grid-column-gap: 0.375rem;
  grid-row-gap: 0.375rem;
  color: #e5e5e5;
  flex-direction: column;
  text-decoration: none;
  display: flex;
}

.button-line-wrap {
  background-color: #e5e5e554;
  flex-direction: column;
  align-items: flex-start;
  height: 1px;
  margin-top: 3px;
  display: flex;
}

.button-line-animation {
  background-color: #e5e5e5;
  width: 30%;
  height: 1px;
}

.button-line-animation.white-mode-background {
  background-color: #fff;
}

.webmoz-footer-name {
  grid-column-gap: 0.7rem;
  grid-row-gap: 0.7rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.brand-text-size-medium {
  font-family: var(--brand-header);
  color: #fff;
  letter-spacing: 1.05px;
  font-size: 1.125rem;
  font-weight: 700;
}

.credits {
  opacity: 0.8;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.credits:hover {
  opacity: 1;
}

.text-color-grey {
  color: #9a9aa3;
}

.text-color-white {
  color: #fff;
}

.footer-social-wrap {
  display: flex;
  gap: 1.5rem;
}

.footer-social-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
  font-family: var(--brand-header);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-social-link:hover {
  opacity: 1;
}

.footer-text {
  pointer-events: none;
  font-family: var(--brand-header);
  text-align: center;
  letter-spacing: -0.03em;
  justify-content: center;
  align-items: center;
  margin-bottom: -2rem;
  font-size: clamp(3rem, 14vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  display: flex;
  position: relative;
  top: 0;
  text-transform: uppercase;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff5c 30%,
    rgba(255, 255, 255, 0.05) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (max-width: 991px) {
  .grid-login {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 2rem 1rem;
    box-sizing: border-box;
  }

  .signup-wrapper {
    width: min(100%, 570px);
    padding: 2rem;
    box-sizing: border-box;
  }

  .signup-heading-wrap {
    display: none;
  }

  .heading-9 {
    white-space: normal;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-right {
    width: 100%;
    padding-top: 0;
    justify-content: center;
  }
}

.wm-inline {
  max-width: 100%;
  display: inline-block;
}

.signup-section .login-badge {
  cursor: default;
}
