/* Redesigned account creation page: two-column dark layout. */

body.signup-redesign {
  margin: 0;
}
.signup-redesign main {
  margin: 0;
  padding: 0;
}

.signup2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  color: #fff;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
}

/* ---------------------------------------------------------------- form panel */
.signup2__form-panel {
  display: flex;
  flex-direction: column;
  padding: 32px 40px 40px;
  background: linear-gradient(160deg, #171922 0%, #0e0f14 70%);
}

.signup2__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.signup2__logo img {
  display: block;
  height: 28px;
  width: auto;
}
.signup2__login {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.signup2__login a {
  margin-left: 6px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.signup2__login a:hover {
  color: #376cf5;
}

.signup2__content {
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.signup2__headline {
  margin: 0 0 28px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.signup2__accent {
  color: #376cf5;
}

.signup2__google {
  display: flex;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 8px;
}

.signup2__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.signup2__divider::before,
.signup2__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.signup2__row {
  display: flex;
  gap: 12px;
}
.signup2__row .signup2__field {
  flex: 1;
}

.signup2__field {
  margin-bottom: 16px;
}
.signup2__field > label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.signup2__input {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 14px;
  background: #1b1d24;
  border: 1px solid #2b2f3a;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.signup2__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.signup2__input:focus {
  outline: none;
  border-color: #376cf5;
}

.signup2__password {
  position: relative;
}
.signup2__password .signup2__input {
  padding-right: 44px;
}
.signup2__eye {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: flex;
  padding: 6px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.signup2__eye:hover {
  color: #fff;
}

.signup2__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.signup2__check input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #376cf5;
}
/* The checkbox widget also emits a webflow custom-checkbox div; hide it so only
   the native control shows outside the site's .form-checkbox wrapper. */
.signup2__check .w-checkbox-input {
  display: none;
}

.signup2__cta {
  width: 100%;
  padding: 14px 20px;
  background: #376cf5;
  border: none;
  border-radius: 9999px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 150ms cubic-bezier(0.4, 0, 0.2, 1),
    color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.signup2__cta:hover {
  background: #fff;
  color: #14151a;
}

.signup2__nocard {
  margin: 14px 0 0;
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}
.signup2__tos {
  margin: 22px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.signup2__tos a {
  color: rgba(255, 255, 255, 0.6);
}

/* Field errors render as <div class="error-label"> (project's custom error
   template). The global webflow .error-label rule positions it absolutely in the
   top-right, which floats it behind the testimonial column. Force it back into
   normal flow, directly under its field. */
.signup2 .errorlist,
.signup2 .error-label {
  position: static;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  color: #fe602a;
  font-size: 12px;
}

/* ----------------------------------------------------------- testimonial panel */
.signup2__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background:
    radial-gradient(90% 70% at 72% 30%, rgba(150, 45, 55, 0.5), rgba(20, 16, 22, 0) 60%),
    radial-gradient(80% 80% at 25% 95%, rgba(70, 45, 120, 0.25), rgba(20, 16, 22, 0) 60%),
    #0c0c11;
}
.signup2__quote {
  max-width: 460px;
  margin: 0;
  padding: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}
.signup2__quote-mark {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #376cf5;
  /* The " glyph sits high in its line box; pull the text up to meet it. */
  margin-bottom: -20px;
}
.signup2__quote blockquote {
  /* Override the global Webflow blockquote rule (grey left border + padding). */
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
}
.signup2__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.signup2__avatar-img {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.signup2__author strong {
  display: block;
  font-size: 15px;
}
.signup2__author em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ------------------------------------------------------------------ responsive */
@media (max-width: 900px) {
  .signup2 {
    grid-template-columns: 1fr;
  }
  .signup2__form-panel {
    padding: 28px 20px 36px;
  }
  .signup2__content {
    max-width: 420px;
    margin: 32px auto;
  }
  .signup2__aside {
    padding: 40px 20px 56px;
  }
}

@media (max-width: 480px) {
  .signup2__headline {
    font-size: 36px;
  }
  .signup2__row {
    flex-direction: column;
    gap: 0;
  }
}
