/* ═══════════════════════════════════════════════════════════════
   register-trial-redesign.css
   BrandMentions Register Trial — Complete Redesign
   Matches SignUpV2CC 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;
}

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

.rv2-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 rv2-cardIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rv2-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}
@keyframes rv2-spin {
  to { transform: rotate(360deg); }
}
@keyframes rv2-checkPop {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes rv2-progressFill {
  from { width: 0%; }
  to   { width: 100%; }
}
@keyframes rv2-logoIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rv2-calloutIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rv2-btnShimmer {
  0%   { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(320%) skewX(-18deg); }
}

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

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

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

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

.rv2-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;
}

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

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

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

/* ── Card container ── */
.rv2-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 36px 72px rgba(40,44,130,.11);
  overflow: visible;
  animation: rv2-cardIn 460ms cubic-bezier(.22,.68,0,1.2) both;
  position: relative;
  z-index: 1;
}

/* Shake on form, not the whole card */
#register_form.rv2-shake {
  animation: rv2-shake 400ms ease;
}

/* ── Left panel (form) ── */
.rv2-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;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.rv2-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");
}

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

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

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

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

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

.rv2-field input {
  width: 100%;
  height: 50px;
  padding-left: 46px;
  padding-right: 42px;
  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;
}

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

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

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

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

.rv2-field .rv2-status-icon.rv2-ok { color: #22c55e; }
.rv2-field .rv2-status-icon.rv2-error { color: #ef4444; }

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

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

/* ── Password toggle ── */
.rv2-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;
}

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

/* ── Two-column row (name fields, country+zip) ── */
.rv2-row-2col {
  display: flex;
  gap: 12px;
}

.rv2-row-2col > .rv2-field {
  flex: 1;
}

/* ── Country select ── */
.rv2-country-select {
  width: 100%;
  height: 50px;
  padding: 0 16px 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;
  cursor: pointer;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8ADCC' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

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

.rv2-country-select.rv2-select-error {
  border-color: #ef4444;
}

/* ── ZIP input ── */
.rv2-zip-field input {
  padding-left: 16px;
}

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

.rv2-cta::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: rv2-btnShimmer 3.2s ease-in-out 1.8s infinite;
  pointer-events: none;
}

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

.rv2-cta:active:not(:disabled) {
  transform: translateY(0);
}

.rv2-cta:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.rv2-cta:disabled::after {
  display: none;
}

.rv2-cta .rv2-spinner {
  width: 18px;
  height: 18px;
  animation: rv2-spin 700ms linear infinite;
}

.rv2-cta .rv2-arrow {
  display: flex;
  align-items: center;
}

/* ── Pricing note ── */
.rv2-pricing-note {
  text-align: center;
  font-size: 13px;
  color: #8B90BE;
  margin-top: 18px;
  line-height: 1.5;
  font-weight: 400;
}

/* ── Payment card icons ── */
.rv2-card-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  filter: grayscale(1);
  opacity: 0.42;
}

.rv2-card-icons .rv2-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  border-radius: 5px;
  border: 1.5px solid #D4D7EE;
  background: #f7f8fc;
  padding: 0 6px;
}

.rv2-card-icons .rv2-card-icon.rv2-amex-bg {
  background: #016FD0;
}

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

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

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

/* ── Checkout mode (hidden-form) ──
   When .register_row has .hidden-form, Paddle checkout is active:
   hide the registration form and related copy, show only the checkout container */
.rv2-page .register_row.hidden-form form#register_form,
.rv2-page .register_row.hidden-form .rv2-pricing-note,
.rv2-page .register_row.hidden-form .rv2-terms {
  display: none !important;
}

.rv2-page .register_row.hidden-form .checkout-container {
  display: block;
  width: 100%;
  min-height: 830px;
}

.rv2-page .register_row.hidden-form #register_main_container {
  height: 100%;
}

/* ── Right panel (social proof) ── */
.rv2-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;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rv2-trusted-logos .rv2-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;
}

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

/* ── Preloader inside button ── */
.rv2-left .infinite-preloader {
  display: none !important;
}

/* ── Override old register styles ── */
.rv2-page #main {
  display: contents !important;
  padding-top: 0 !important;
  align-items: initial !important;
  justify-content: initial !important;
}

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

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

/* Override old inline style tag */
.rv2-page .register_row {
  width: 100% !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: block !important;
}

.rv2-page .register_row {
  display: contents;
}

.rv2-page #register_container {
  background: transparent !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  min-height: auto !important;
  padding-top: 0 !important;
}

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

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

/* Override form field styles */
.rv2-page #register_form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}

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

.rv2-page #register_form .row label {
  display: none;
}

.rv2-page #register_form .row.flex-row {
  display: flex;
  gap: 12px;
}

.rv2-page #register_form .row.flex-row .column {
  flex: 1;
  width: auto;
  padding: 0;
  margin: 0;
}

.rv2-page #register_form input[type="text"],
.rv2-page #register_form input[type="email"],
.rv2-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;
}

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

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

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

.rv2-page #register_form select {
  width: 100%;
  height: 50px;
  padding: 0 36px 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;
  cursor: pointer;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8ADCC' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

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

/* Input wrapper with icon */
.rv2-input-row {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

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

.rv2-input-row .rv2-icon svg {
  width: 16px;
  height: 16px;
}

/* Country/ZIP row icon */
.rv2-select-row {
  position: relative;
  display: flex;
  align-items: center;
}

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

.rv2-select-row .rv2-icon svg {
  width: 16px;
  height: 16px;
}

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

.rv2-page #register_container form #submit_button,
.rv2-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;
  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;
}

.rv2-page #register_container form #submit_button::after,
.rv2-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: rv2-btnShimmer 3.2s ease-in-out 1.8s infinite;
  pointer-events: none;
}

.rv2-page #register_container form #submit_button:hover:not(:disabled),
.rv2-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;
}

.rv2-page #register_container form #submit_button:active:not(:disabled),
.rv2-page #submit_button:active:not(:disabled) {
  transform: translateY(0);
}

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

/* Old copy / bottom side override */
.rv2-page .bmreg-copy {
  text-align: center;
  font-size: 13px;
  color: #8B90BE;
  margin-top: 18px;
  line-height: 1.5;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.rv2-page .bottom-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.rv2-page .bottom-side img {
  max-height: 24px;
  filter: grayscale(1);
  opacity: 0.42;
}

.rv2-page .bottom-side .terms {
  text-align: center;
  font-size: 11.5px;
  color: #B0B5D0;
  line-height: 1.6;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.rv2-page .bottom-side .terms a {
  color: #B0B5D0;
  text-decoration: none;
}

.rv2-page .bottom-side .terms a:hover {
  text-decoration: underline;
}

/* ── Responsive: tablet (≤860px) ── */
@media (max-width: 860px) {
  .rv2-page{
    overflow: visible;
  }
  .rv2-card {
    flex-direction: column;
    max-width: 520px;
    min-height: auto;
    overflow: visible;
  }

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

  .rv2-right {
    width: 100%;
    flex: none;
    border-left: none;
    border-top: 1px solid #ECEEF8;
    padding: 32px 36px 36px;
    border-radius: 0 0 24px 24px;
  }
}

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

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

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

  .rv2-left {
    padding: 28px 22px 22px;
  }

  .rv2-right {
    padding: 22px 22px 36px;
  }

  .rv2-page #register_form input[type="text"],
  .rv2-page #register_form input[type="email"],
  .rv2-page #register_form input[type="password"] {
    font-size: 16px;
  }

  .rv2-page #register_form .row.flex-row {
    flex-direction: column;
    gap: 4px;
  }

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

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

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

/* ── Hide old inline styles from style#testimonial-register ── */
.rv2-page #testimonial_container {
  display: none !important;
}

/* ═══════════════════════════════════════════
   V2 FORM — Inline form fields + validation
   ═══════════════════════════════════════════ */

/* Form field container */
.rv2-field {
  margin-bottom: 4px !important;
}

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

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

/* Text inputs */
.rv2-field input[type="text"],
.rv2-field input[type="email"],
.rv2-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;
}

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

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

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

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

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

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

.rv2-field input.rv2-input-error:focus,
.rv2-page #register_container form input.rv2-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 */
.rv2-field input.rv2-input-ok,
.rv2-page #register_container form input.rv2-input-ok {
  border: 1.5px solid #22c55e !important;
  background-color: #fff !important;
}

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

/* Select */
.rv2-field select {
  width: 100%;
  height: 50px;
  padding: 0 36px 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;
  cursor: pointer;
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8ADCC' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

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

.rv2-field select.rv2-select-error {
  border-color: #ef4444;
}

/* Status icons (ok / error) */
.rv2-status-icon {
  position: absolute;
  right: 14px;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.rv2-status-icon.rv2-ok { color: #22c55e; }
.rv2-status-icon.rv2-error { color: #ef4444; }

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

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

/* Password toggle */
.rv2-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;
}

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

/* ZIP field — no icon padding */
.rv2-zip-field input[type="text"] {
  padding-left: 16px;
}

/* ─── Email wrapper expanded state with warning ─── */
.rv2-input-wrap.rv2-email-has-warning {
  border: 1.5px solid #F59E0B;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.10);
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

.rv2-pw-text {
  font-size: 12px;
  color: #92400E;
  line-height: 1.5;
  font-weight: 500;
}

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

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

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

/* ─── Pricing note & card icons ─── */
.rv2-pricing-note {
  text-align: center;
  font-size: 13px;
  color: #8B90BE;
  margin-top: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.rv2-card-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  filter: grayscale(1);
  opacity: 0.42;
}

.rv2-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  border-radius: 5px;
  border: 1.5px solid #D4D7EE;
  background: #f7f8fc;
  padding: 0 6px;
  box-sizing: border-box;
}

.rv2-card-icon.rv2-amex-bg {
  background: #016FD0;
}

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

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

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