/* ═══════════════════════════════════════════════════════════════
   signup-trial-redesign.css
   BrandMentions Sign Up Trial — Complete Redesign (No Credit Card)
   Matches SignUpV2.tsx template design
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & base ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html, body{
  min-height: 100%;
  height: auto;
}

.sv2-page * {
  box-sizing: border-box;
}

.sv2-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #eef0f8 0%, #e8eaf5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 56px 20px 48px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  overflow: visible;
}

/* ── Animations ── */
@keyframes sv2-cardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sv2-shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
}

@keyframes sv2-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sv2-checkPop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes sv2-progressFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes sv2-logoIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sv2-calloutIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sv2-btnShimmer {
  0% {
    transform: translateX(-120%) skewX(-18deg);
  }
  100% {
    transform: translateX(320%) skewX(-18deg);
  }
}

/* ── Background social icons SVG container ── */
.sv2-bg-icons {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Above-card header ── */
.sv2-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  animation: sv2-logoIn 380ms cubic-bezier(.22, .68, 0, 1.2) both;
}

.sv2-header .sv2-logo-link {
  display: inline-block;
  margin-bottom: 24px;
}

.sv2-header .sv2-logo-link img {
  height: 40px;
  width: auto;
}

.sv2-header h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.14;
  color: #1A1C2E;
  letter-spacing: -0.8px;
  margin: 0 0 16px;
  text-align: center;
}

.sv2-header .sv2-microcopy {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin: 12px 0 0;
  text-align: center;
}

.sv2-header .sv2-microcopy span {
  color: #6D5FD8;
}

.sv2-header .sv2-microcopy .sv2-dot {
  color: #B0B5D0;
}

/* ── Card container ── */
.sv2-card {
  display: flex;
  width: 100%;
  max-width: 950px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 4px rgba(40, 44, 130, .04),
  0 8px 28px rgba(40, 44, 130, .09),
  0 32px 64px rgba(40, 44, 130, .06);
  overflow: visible;
  animation: sv2-cardIn 460ms cubic-bezier(.22, .68, 0, 1.2) both;
  position: relative;
  z-index: 1;
}

/* Shake on form */
#register_form.sv2-shake {
  animation: sv2-shake 400ms ease;
}

/* ── Left panel (form) ── */
.sv2-left {
  flex: 0 0 60%;
  width: 60%;
  padding: 52px 64px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(160deg, #fafbff 0%, #f3f4fb 100%);
  position: relative;
  box-sizing: border-box;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.sv2-left::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

.sv2-form-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ── Google SSO Button ── */
.sv2-sso-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  border-radius: 11px;
  border: 1.5px solid #D4D7EE;
  background: #F4F5FB;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3A3D5C;
  cursor: pointer;
  transition: border-color 160ms, box-shadow 160ms, background 160ms;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  margin-bottom: 20px;
}

.sv2-sso-btn:hover {
  border-color: #9DA3C8;
  background: #ECEDF8;
  box-shadow: 0 2px 10px rgba(91, 79, 196, .10);
}

.sv2-sso-btn:active {
  background: #E4E6F5;
}

/* ── OR separator ── */
.sv2-or-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 20px;
}

.sv2-or-separator .sv2-or-line {
  flex: 1;
  height: 1px;
  background: #E4E6F0;
}

.sv2-or-separator .sv2-or-text {
  font-size: 12px;
  font-weight: 600;
  color: #7A80A8;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── Form ── */
.sv2-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ── Input field wrapper ── */
.sv2-field {
  margin-bottom: 4px;
}

.sv2-field .sv2-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.sv2-field .sv2-input-icon {
  position: absolute;
  left: 16px;
  color: #A8ADCC;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
}

.sv2-field input[type="text"],
.sv2-field input[type="email"],
.sv2-field input[type="password"] {
  width: 100%;
  height: 50px;
  padding: 0 42px 0 46px;
  background: #fff;
  border: 1.5px solid #C8CBDF;
  border-radius: 11px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14.5px;
  color: #1A1C2E;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms, background 200ms;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.sv2-field input::placeholder {
  color: #A8ADCC;
  font-weight: 400;
}

.sv2-field input:focus {
  border-color: #5B4FC4;
  box-shadow: 0 0 0 3px rgba(91, 79, 196, .12);
}

.sv2-field input:hover:not(:focus):not(.sv2-input-error):not(.sv2-input-ok) {
  border-color: #9DA3C8;
}

/* ── Error state ── */
.sv2-field input.sv2-input-error,
.sv2-page #register_container form .error input.sv2-input-error,
.sv2-page #register_container form input.sv2-input-error {
  border: 1.5px solid rgb(239, 68, 68) !important;
  background-color: #fff !important;
}

.sv2-input-wrap:has(.sv2-input-error) .sv2-eye-open{
  display: none;
}

.sv2-input-wrap:has(.sv2-input-ok) .sv2-ok {
  display: none;
}

.sv2-field input.sv2-input-error:focus,
.sv2-page #register_container form input.sv2-input-error:focus {
  border: 1.5px solid rgb(239, 68, 68) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12) !important;
  background-color: #fff !important;
}

/* ── OK state ── */
.sv2-field input.sv2-input-ok,
.sv2-page #register_container form input.sv2-input-ok {
  border: 1.5px solid #22c55e !important;
  background-color: #fff !important;
}

/* ── Status icons ── */
.sv2-status-icon {
  position: absolute;
  right: 14px;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.sv2-status-icon.sv2-ok {
  color: #22c55e;
}

.sv2-status-icon.sv2-error {
  color: #ef4444;
}

/* ── Error slot ── */
.sv2-error-slot {
  min-height: 18px;
  margin-top: 3px;
}

.sv2-error-msg {
  font-size: 11.5px;
  color: #ef4444;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.4;
}

/* ── Password toggle ── */
.sv2-pass-toggle {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: #A8ADCC;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color 180ms;
  -webkit-appearance: none;
  z-index: 2;
}

.sv2-pass-toggle:hover {
  color: #5B4FC4;
}

/* ── CTA button ── */
.sv2-cta,
.sv2-page #submit_button {
  width: 100% !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  border: none !important;
  border-radius: 12px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 16.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  color: #fff !important;
  background: #E91E63 !important;
  box-shadow: 0 4px 18px rgba(233, 30, 99, .35) !important;
  cursor: pointer !important;
  margin-top: 8px !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: transform 180ms, box-shadow 180ms, filter 180ms !important;
}

.sv2-cta::after,
.sv2-page #submit_button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
  animation: sv2-btnShimmer 3.2s ease-in-out 1.8s infinite;
  pointer-events: none;
}

.sv2-cta:hover:not(:disabled),
.sv2-page #submit_button:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.08) saturate(1.05);
  box-shadow: 0 10px 28px rgba(233, 30, 99, .40) !important;
}

.sv2-cta:active:not(:disabled),
.sv2-page #submit_button:active:not(:disabled) {
  transform: translateY(0);
}

.sv2-cta:disabled,
.sv2-page #submit_button:disabled {
  opacity: 0.72;
  cursor: not-allowed !important;
}

.sv2-cta:disabled::after,
.sv2-page #submit_button:disabled::after {
  display: none;
}

/* ── Terms ── */
.sv2-terms {
  text-align: center;
  font-size: 11.5px;
  color: #B0B5D0;
  margin-top: 16px;
  line-height: 1.6;
}

.sv2-terms a {
  color: #B0B5D0;
  text-decoration: none;
}

.sv2-terms a:hover {
  text-decoration: underline;
}

/* ── Right panel (social proof) ── */
.sv2-right {
  flex: 0 0 40%;
  width: 40%;
  background: #FAFBFF;
  border-left: 1px solid #ECEEF8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

/* Dot-grid decoration */
.sv2-dot-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  pointer-events: none;
  opacity: 0.22;
}

/* Testimonial */
.sv2-testimonial {
  margin-bottom: 32px;
}

.sv2-testimonial .sv2-quote-icon {
  opacity: 0.28;
  margin-bottom: 10px;
  margin-top: -4px;
  color: #6D5FD8;
}

.sv2-testimonial .sv2-quote-text {
  font-size: 14.5px;
  color: #2A2D4A;
  line-height: 1.72;
  font-style: normal;
  font-weight: 500;
  margin: 0 0 20px;
}

.sv2-testimonial .sv2-quote-text strong {
  font-weight: 700;
  color: #1A1C2E;
}

.sv2-testimonial .sv2-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sv2-testimonial .sv2-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ECEEF8;
  flex-shrink: 0;
}

.sv2-testimonial .sv2-author-name {
  font-size: 13px;
  font-weight: 700;
  color: #1A1C2E;
  margin: 0 0 2px;
}

.sv2-testimonial .sv2-author-role {
  font-size: 11.5px;
  color: #8B8FC4;
  line-height: 1.4;
  margin: 0;
}

.sv2-testimonial .sv2-author-role strong {
  color: #5B4FC4;
}

/* G2 badges */
.sv2-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sv2-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sv2-badges-row img {
  height: 92px;
  width: auto;
  transition: opacity 240ms, transform 200ms;
  opacity: 0.88;
}

.sv2-badges-row img:hover {
  opacity: 1;
  transform: scale(1.04);
}

.sv2-rating {
  display: flex;
  align-items: center;
  gap: 7px;
}

.sv2-rating .sv2-stars {
  color: #F59E0B;
  font-size: 15px;
  letter-spacing: 1px;
}

.sv2-rating .sv2-score {
  font-size: 13px;
  font-weight: 700;
  color: #2A2D4A;
}

.sv2-rating .sv2-on-g2 {
  font-size: 12.5px;
  color: #4A4580;
  font-weight: 700;
}

/* ── Below card — Trusted by ── */
.sv2-trusted {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  width: 100%;
  max-width: 950px;
  position: relative;
  z-index: 1;
}

.sv2-trusted .sv2-trusted-text {
  font-size: 14px;
  font-weight: 500;
  color: #A8ADCC;
  letter-spacing: 0.01em;
  margin: 0 0 2px;
  text-align: center;
}

.sv2-trusted .sv2-trusted-text strong {
  font-weight: 700;
  color: #9B96D8;
}

.sv2-trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.sv2-trusted-logos .sv2-logo-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #B0B5D0;
  opacity: 0.85;
  font-size: 15.5px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.sv2-trusted-logos .sv2-logo-item .sv2-logo-icon {
  opacity: 0.6;
  display: flex;
  align-items: center;
}

/* ── Hide old preloader ── */
.sv2-left .infinite-preloader {
  display: none !important;
}

/* ══════════════════════════════════════════════
   Override old register/signup styles
   Must use !important to beat inline <style> tag
   and register.css specificity
   ══════════════════════════════════════════════ */

.sv2-page #main {
  display: contents !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  align-items: initial !important;
  justify-content: initial !important;
}

.sv2-page .bm-header {
  display: none !important;
}

.sv2-page .bmfooter {
  display: none !important;
}

/* Override old inline style tag + register.css */
.sv2-page .register_row {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  overflow: visible !important;
  background-color: transparent !important;
  display: contents !important;
}

.sv2-page #register_container {
  background: transparent !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  min-height: auto !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.sv2-page #register_main_container {
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  width: 100% !important;
}

.sv2-page #testimonial_container {
  display: none !important;
}

/* Kill old form padding/margin from register.css */
.sv2-page #register_container form,
.sv2-page #register_form {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Reset old form > div margin (register.css: margin-bottom:22px) */
.sv2-page #register_container form > div,
.sv2-page #register_form > div {
  margin-bottom: 0 !important;
}

/* But keep our sv2-field spacing */
.sv2-page .sv2-field {
  margin-bottom: 4px !important;
}

.sv2-page #register_form .row {
  margin: 0 0 4px !important;
  padding: 0 !important;
  width: 100% !important;
}

.sv2-page #register_form .row label {
  display: none !important;
}

.sv2-page #register_form .row.flex-row {
  display: none !important;
}

/* Kill old top-side / bottom-side / no-obligations */
.sv2-page #register_container .top-side {
  display: none !important;
}

.sv2-page #register_container .bottom-side {
  display: none !important;
}

.sv2-page #register_container .no-obligations,
.sv2-page .no-obligations {
  display: none !important;
}

/* Old error container style reset */
.sv2-page .error-container {
  display: none !important;
}

.sv2-page #register_container form .error {
  border: none !important;
  background: none !important;
}

.sv2-page #register_form input[type="text"],
.sv2-page #register_form input[type="email"],
.sv2-page #register_form input[type="password"] {
  width: 100%;
  height: 50px;
  padding: 0 42px 0 46px;
  background: #fff;
  border: 1.5px solid #C8CBDF;
  border-radius: 11px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14.5px;
  color: #1A1C2E;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.sv2-page #register_form input::placeholder {
  color: #A8ADCC;
}

.sv2-page #register_form input:focus {
  border-color: #5B4FC4;
  box-shadow: 0 0 0 3px rgba(91, 79, 196, .12);
}

.sv2-page #register_form input:hover:not(:focus) {
  border-color: #9DA3C8;
}

/* CTA override */
.sv2-page #register_form .row.last-row {
  margin-top: 8px;
  margin-bottom: 0;
}

/* Old bottom side — hidden (we use sv2-terms instead) */

/* ─── Email wrapper expanded state with warning ─── */
.sv2-input-wrap.sv2-email-has-warning {
  border: 1.5px solid #7C6FCD;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(91, 79, 196, .10);
  flex-wrap: wrap;
}

.sv2-input-wrap.sv2-email-has-warning input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.sv2-input-wrap.sv2-email-has-warning .sv2-input-icon {
  top: 0;
  height: 50px;
  display: flex;
  align-items: center;
}

/* ─── Personal email warning callout ─── */
.sv2-personal-warning {
  width: 100%;
  border-top: 1px solid #FDE68A;
  border-left: 3px solid #F59E0B;
  background: #FFFBEB;
  padding: 10px 14px 12px;
  animation: sv2-calloutIn 220ms cubic-bezier(.22, .68, 0, 1.2) both;
}

.sv2-pw-inner {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sv2-pw-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sv2-pw-row svg {
  flex-shrink: 0;
  margin-top: 1.5px;
}

.sv2-pw-text {
  font-size: 11.5px;
  color: #92400E;
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
}

.sv2-pw-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: #B45309;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 0;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms;
  -webkit-appearance: none;
}

.sv2-pw-btn:hover {
  color: #92400E;
}

/* ─── Shake animation for form ─── */
#register_form.sv2-shake {
  animation: sv2-shake 400ms ease !important;
}

/* ══════════════════════════════════════════════
   Responsive: ≤960px
   Must also re-override old inline media queries
   that set .register_row height:100%, overflow, etc.
   ══════════════════════════════════════════════ */
@media (max-width: 960px) {
  /* Re-beat old inline @media(max-width:960px) rules */
  .sv2-page .register_row,
  .sv2-page .register_row:not(.hidden-form) {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    overflow: visible !important;
    display: contents !important;
  }

  .sv2-page #register_container {
    height: auto !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* ── Responsive: tablet (≤860px) ── */
@media (max-width: 860px) {
  .sv2-page {
    overflow: visible;
  }

  .sv2-card {
    flex-direction: column;
    max-width: 520px;
    min-height: auto;
    overflow: visible;
  }

  .sv2-left {
    width: 100% !important;
    flex: none !important;
    padding: 36px 36px 28px;
    border-radius: 24px 24px 0 0;
  }

  .sv2-right {
    width: 100% !important;
    flex: none !important;
    border-left: none;
    border-top: 1px solid #ECEEF8;
    padding: 28px 36px 44px;
    border-radius: 0 0 24px 24px;
  }
}

/* ── Responsive: ≤560px — beat old register.css @media ── */
@media (max-width: 560px) {
  .sv2-page #main {
    padding: 0 !important;
  }

  .sv2-page #register_container form,
  .sv2-page #register_form {
    padding: 0 !important;
  }

  .sv2-page #register_container form .row.flex-row {
    display: none !important;
  }
}

/* ── Responsive: mobile (≤480px) ── */
@media (max-width: 480px) {
  .sv2-page {
    padding: 28px 16px 36px;
  }

  .sv2-header h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .sv2-header .sv2-microcopy {
    font-size: 14px;
  }

  .sv2-left {
    padding: 28px 22px 22px !important;
  }

  .sv2-right {
    padding: 22px 22px 36px !important;
  }

  .sv2-field input[type="text"],
  .sv2-field input[type="email"],
  .sv2-field input[type="password"] {
    font-size: 16px !important;
  }

  .sv2-badges-row img {
    height: 72px;
  }

  .sv2-trusted-logos {
    gap: 20px;
  }

  .sv2-trusted-logos .sv2-logo-item {
    font-size: 13px;
  }
}

/* ── Checkout container (Paddle) ── */
.sv2-page .checkout-container {
  width: 100%;
}

/* ══════════════════════════════════════════════
   Post-submission states
   (success message / check-email message)
   ══════════════════════════════════════════════ */

/* Loading container — hidden by default, shown by JS */
.sv2-page #register_loading_container {
  display: none;
  width: 100%;
}

.sv2-page #register_loading_container:not(:empty) {
  display: flex !important;
}

/* Post-submit card content */
.sv2-post-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 32px;
  width: 100%;
  animation: sv2-cardIn 460ms cubic-bezier(.22, .68, 0, 1.2) both;
}

.sv2-post-submit-icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv2-post-submit-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #1A1C2E;
  letter-spacing: -0.4px;
  margin: 0 0 12px;
}

.sv2-post-submit-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #6B6F96;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 340px;
}

/* Animated progress bar */
.sv2-post-submit-progress {
  width: 100%;
  max-width: 260px;
  height: 4px;
  background: #ECEEF8;
  border-radius: 4px;
  overflow: hidden;
}

.sv2-post-submit-bar {
  height: 100%;
  background: linear-gradient(90deg, #5B4FC4 0%, #6D5FD8 60%, #E91E63 100%);
  border-radius: 4px;
  animation: sv2-progressFill 2s ease-in-out forwards;
}

/* When form is hidden, also hide old hidden-form artifacts */
.sv2-page .register_row.hidden-form form#register_form,
.sv2-page .register_row.hidden-form .sv2-sso-btn,
.sv2-page .register_row.hidden-form .sv2-or-separator,
.sv2-page .register_row.hidden-form .sv2-terms,
.sv2-page .register_row.hidden-form .checkout-container {
  display: none !important;
}
