:root{
  --vc-bg: #f6f8fb;
  --vc-border: #e7edf5;
  --vc-text: #0f172a;
  --vc-muted: #4B5563;

  /* exact submit color from screenshot */
  --vc-primary: #6366F1;
  --vc-primary-hover: #5558e6;

  /* back button border from screenshot */
  --vc-btn-border: #D1D5DB;

  --vc-card: #ffffff;
  --vc-shadow:  rgba(29, 28, 28, 0.25) 0px 6px 12px -2px, rgba(29, 28, 28, 0.3) 0px 3px 7px -3px;
}

*{ box-sizing: border-box; }

body{
  font-family: "Inter", sans-serif;
  background: var(--vc-bg);
  color: var(--vc-text);
}

/* Header */
.vc-topbar{
  background: #ffffff;
  border-bottom: 1px solid var(--vc-border);
}

.vc-topbar-row{
  padding: 16px 0;
}

.vc-logo{
  height: 34px;
  width: auto;
  display: block;
}

.vc-muted{ color: var(--vc-muted); }

.vc-link{
  color: #6366F1;
  text-decoration: none;
}
.vc-link:hover{ text-decoration: underline; }

/* Page */
.vc-page{
  padding: 32px 0 64px;
}

/* Fluid but centered readable width */
.vc-wrap{
  width: 100%;
  max-width: 1180px;
}

/* Left */
.vc-title{
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.08;
  font-size: clamp(36px, 3.2vw, 46px);
  margin-top: 6px;
  color: #111827;
}

.vc-subtitle{
  color: var(--vc-muted);
  line-height: 1.6;
  font-size: 18px;
  max-width: 520px;
}

/* Features */
.vc-feature-list{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.vc-iconbox{
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vc-border);
  flex: 0 0 42px;
}

.vc-iconbox i{ font-size: 16px; }

.vc-iconbox-purple{ background: #f1efff; border-color: #f1efff; }
.vc-iconbox-purple i{ color: #4f46e5; }

.vc-iconbox-blue{ background: #eaf2ff; border-color: #eaf2ff; }
.vc-iconbox-blue i{ color: #0ea5e9; }

.vc-iconbox-green{ background: #eafff2; border-color: #eafff2; }
.vc-iconbox-green i{ color: #16a34a; }

.vc-feature-title{ font-weight: 600; font-size: 16px; line-height: 24px; margin-bottom: 4px; color: #111827; }
.vc-feature-text{ color: var(--vc-muted); line-height: 24px; font-size: 16px; max-width: 450px; font-weight: 400; }

/* Card */
.vc-card{
  background: var(--vc-card);
  border: 1px solid var(--vc-border);
  border-radius: 16px;
  box-shadow: var(--vc-shadow);
  width: 100%;
  /* max-width: 480px; */
}

.vc-card-body{ padding: 22px 22px 18px; }

.vc-card-title{ font-weight: 700; font-size: 24px; line-height: 32px; margin-bottom: 4px; color: #111827; }
.vc-card-subtitle{ color: var(--vc-muted); font-size: 16px; line-height: 24px; font-weight: 400; margin-bottom: 16px; }

.vc-label{
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.vc-input{
  border-radius: 10px;
  border-color: var(--vc-border);
  padding: 10px 12px;
  font-size: 16px;
  line-height: 24px;
}
.vc-input:focus{
    outline: none;
    border-color: var(--vc-primary);
    box-shadow: none;
}
.vc-input::placeholder{ color: #9aa7b6; }

.vc-help{ color: #6B7280; font-size: 12px; line-height: 16px; }

/* EXACT checkbox styling (square + underlined label like screenshot) */
.vc-checklist{
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.vc-checkrow{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  user-select: none;
  cursor: pointer;
}

.vc-checkbox{
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 20px;
  border: 1px solid #000000;
  border-radius: 2px; /* sharp square like screenshot */
  background: #ffffff;
  display: inline-grid;
  place-content: center;
  flex: 0 0 22px;
}


.vc-checkbox:checked{
  border-color: var(--vc-primary);
}

.vc-checkbox:checked::after{
  content: "";
  width: 10px;
  height: 10px;
  background: var(--vc-primary);
  border-radius: 1px;
}

.vc-checktext{
  color: #475569;
  font-size: 14px;
  
}
.vc-checktext.underline{
text-decoration: underline; /* exact underline look */
  text-underline-offset: 3px;
}

/* Exact Buttons */
.vc-btn-back{
  border-radius: 10px;
  border: 1px solid var(--vc-btn-border);
  background: #ffffff;
  color: #111827;
  padding: 10px 12px;
  font-weight: 600;
  height: 50px;
  width: 30%;
}

.vc-btn-back:hover{
  background: #f8fafc;
}

.vc-btn-submit{
  border-radius: 10px;
  background: var(--vc-primary);
  border: 1px solid var(--vc-primary);
  color: #ffffff;
  padding: 10px 12px;
  font-weight: 700;
  height: 50px;
  width: 70%;
}

.vc-btn-submit:hover{
  background: var(--vc-primary-hover);
  border-color: var(--vc-primary-hover);
}

.vc-terms{
  font-size: 12px;
  color: #6B7280;
  line-height: 16px;
  padding: 0 4.2rem;
  text-align: center;
}
.vc-card-body .vc-link{
   color: #6B7280;

}
/* Make sure right card centers nicely on small screens */
@media (max-width: 991.98px){
  .vc-card{ margin: 0 auto; }
}

/* In styles.scss */
.vc-swal-popup {
    z-index: 2000 !important; /* Ensure it is higher than your sidebars/overlays */
    font-family: 'Your-Font-Family', sans-serif;
}

/* SweetAlert always on top */
.swal2-container {
  z-index: 999999 !important;
}

/* Prevent background scroll */
body.swal2-shown {
  overflow: hidden !important;
}


/* If the backdrop appears but the box doesn't, force visibility on the popup */
.swal2-popup {
    display: grid !important;
}