  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Helvetica Neue", Arial, sans-serif;
      font-weight: 400;
    }

    body, html {
      height: 100%;
      background: #fff;
    }

   @font-face {
      font-family: 'Pano';
      src: url('./fonts/pano_bold.ttf') format('truetype');
      font-weight: bold;
      font-style: normal;
      font-display: swap;
    }

    .container {
      display: flex;
      min-height: 100vh;
      flex-direction: row;
    }
    .right-image-wrapper {
         line-height: 0;
        }

    /* LEFT PANEL (Desktop) */

    .left-panel h1, .mobile-header h1 {
      font-family: 'Pano', sans-serif!important;
      font-weight: 400;
      font-size: 30px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 30px;
      line-height: 1.3;
      text-align: center;
    }

    .left-panel h1 span, .mobile-header h1 span {
  
      font-family: 'Pano'!important;
      color: transparent;
     -webkit-text-stroke: 1px #b4b4b4;
    }

    .price-info {
      background: white;
      padding: 12px 16px;
      font-size: 12px;
      line-height: 1.5;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
      font-weight: 400;
    }

    .price-info strong {
      font-weight: 700!important;
    }

    .left-panel ul {
      list-style-type: disc;
      padding-left: 20px;
      font-size: 14px;
      line-height: 0.8;
      color: #000;
    }

    .left-panel li {
      margin-bottom: 10px;
    }

    /* RIGHT PANEL */
    .right-panel {
      width: 60%;
      /* flex: 1; */
      background: #fafafb;
      /* padding: 60px 40px 0px 40px; */
      align-items: flex-start;
      justify-content: center;
    }

    .form-container {
      width: 100%;
    }

    .form-header {
      display: block;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }

    .form-container h2 {
      font-size: 20px;
      margin: 0;
    }

    .step-indicator {
      font-size: 20px;
      color: #C9cece;
    }

    .form-container h3 {
      font-size: 14px;
      font-weight: 700;
      margin: 25px 0 15px 0;
      color: #374151;
    }

    .plans {
      display: flex;
      flex-direction: column;
      margin-bottom: 30px;
    }

    .form-error-message {
      margin-bottom: 20px;
    }

    .styled-error {
      background-color: #fff6f8;
      border: 1px solid #f5c7d3;
      color: #cc0033;
      padding: 12px 16px;
      border-radius: 5px;
      font-size: 14px;
      line-height: 1.5;
    }

    .plans {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-option {
  position: relative;
  /* border: 2px solid #ff0055; */
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  background: #fff;
}

/* .plan-option.active {
  background: #fff5f8;
} */
.checkout-plan {
  display: none;
}

/*.checkout-plan.active {*/
/*  display: block;*/
/*}*/
.badge {
  position: absolute;
    top: -10px;
    left: 50%; /* center horizontally */
    transform: translateX(-50%); /* adjust back by half width */
    background: #ff0055;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

/* .plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

.plan-header {
  font-size: 12px;
  margin-top: 6px;
  flex: 1;
}
.plan-header strong {
  font-size: 15px;
  font-weight: 700;
}
.plan-desc strong{
  font-size: 15px;
  font-weight: 700;
  color: #FF004E;
}

.price {
  font-size: 14px;
  font-weight: 700;
}

.price small {
  font-size: 11px;
  font-weight: 400;
}

.plan-desc {
  font-size: 12px;
  margin-top: 6px;
  color: #333;
}

.strike {
  text-decoration: line-through;
  color: #999;
}



    /* .plan-option {
      border-radius: 4px;
      padding: 15px;
      cursor: pointer;
      display: flex;
      gap: 22px;
      align-items: flex-start;
      background: #fff;
      transition: all 0.2s ease;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    } */

    .plan-option.active {
      background: #ffff;
      border: 2px solid #ff004e;
    }

    .plan-details {
    
      font-size: 14px;
      color: #222;
      line-height: 1.5;
    }

    .plan-details strong {
      display: block;
      font-size: 16px;
    }

    .form-group input::placeholder {
      color: #C9cece;
      opacity: 1;
    }

    .form-group input:-ms-input-placeholder {
      color: #C9cece;
    }

    .form-group input::-ms-input-placeholder {
      color: #C9cece;
    }

    .form-group {
      position: relative;
    }

    .form-group input {
      display: block;
      width: 100%;
      padding: 14px 16px;
      font-size: 14px;
      border: none;
      border-radius: 5px;
      background: #fff;
      margin-bottom: 15px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
      transition: all 0.2s ease;
    }
    input#passwordField {
        margin-top: 19px;
    }

    .form-group input:focus {
      outline: none;
      box-shadow: 0 2px 10px rgba(255, 0, 85, 0.25);
    }

    .password-group {
      position: relative;
    }

    .toggle-password {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 13px;
      cursor: pointer;
      color: #888;
    }

    .toggle-password i {
      pointer-events: none;
    }

    .footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #474748;
      margin: 40px auto 3px;
      line-height: 1.6;
      width: 100%;
    }

    .footer-links {
      display: flex;
      gap: 10px;
    }

    .continue-btn {
      width: 100%;
      padding: 14px;
      background-color: #6a6a6b;
      color: white;
      font-size: 14px;
      font-weight: bold;
      margin-top: 10px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      text-transform: uppercase;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .terms {
      margin-top: 15px;
      font-size: 12px;
      color: #809099;
      line-height: 1.5;
    }
    .checkout-plan input[type="radio"] {
      display: none !important;
      }
      .plan-option input[type="radio"]{
        display: none !important;
      }


    .terms a {
      color: #809099;
      text-decoration: underline;
      font-weight: bold;
    }

    .terms a:hover {
      text-decoration: underline;
    }

    .login-link {
      font-size: 18px;
      margin-top: 25px;
      text-align: center;
      display: block;
      /* font-weight: bold; */
      color: #002135;
      text-decoration: underline;
      /* text-transform: uppercase; */
      padding: 12px;
      /* border: 1px solid #ddd;
      border-radius: 4px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: all 0.2s ease; */
    }

   

    /* Stripe Elements Styling */
    .stripe-field {
      padding: 14px 16px;
      border-radius: 5px;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
      transition: all 0.2s ease;
    }
    
    .stripe-field--focus {
      box-shadow: 0 2px 10px rgba(255, 0, 85, 0.25);
    }
    
    .stripe-field--invalid {
      border-color: #ff0055;
    }

    /* container */
    .progress-steps {
      display: flex;
      gap: 6px;
      margin-top: 20px;
    }

    /* each piece */
    .progress-steps .step {
      flex: 1;
        height: 5px;
        background: #fffefe;
        border: #dcdcdc solid 1px;
        border-radius: 10px;
    }

    /* active step */
    .progress-steps .step.active {
      background: #ff0055;
      height: 6px;
    }


    /* MOBILE RESPONSIVE STYLES */
    @media only screen and (max-width: 768px) {
      .container {
        display: flex;
        flex-direction: column; /* STACK VERTICALLY */
    
      }
      .container {
        flex-direction: column;
      }

      .right-panel,
      .left-panel {
        width: 100% !important;
        flex: none;
      }

      .right-panel {
   

        order: 1;
        
      }
      .right-image-wrapper {
        width: 100%;
        height: 100%;

      }
        /* FORM SECOND */
      .left-panel {
        order: 2;
        width: 100%;
        display: block;
      }

      .form-header {
        margin-bottom: 20px;
      }

      .form-container h2 {
        font-size: 18px;
      }

      .step-indicator {
        font-size: 12px;
      }

      .form-container h3 {
        font-size: 14px;
        margin: 15px 0 10px 0;
      }

      .plans {
        margin-bottom: 20px;
      }

      .plan-option {
        padding: 12px;
      }

      .form-group input {
        padding: 10px;
        margin-bottom: 17px;
      }

      .continue-btn {
        padding: 12px;
      }

      .terms {
        font-size: 11px;
      }
    

      .login-link {
        margin-top: 20px;
        padding: 10px;
      }

      .footer {
        margin-top: 30px;
        font-size: 11px;
      }
    }

.left-panel {
  width: 40%;
  background-color: #fad1d2;
  color: #000;
  /* flex: 1; */
  padding: 100px 75px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.user-info {
  position: absolute;
  top: 8px;
  right: 11px;
  text-align: right;
  display: block;
}

#logout-btn, #logout-btn-mobile {
  background: none;
  border: none;
  font-weight: 700;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 4px;
}

#logout-btn:hover, #logout-btn-mobile:hover {
  color: #ff0055;
  text-decoration: underline;
}

#user-email{
  font-size: 12px;
  color: #000;
  margin-bottom: 6px;
  word-break: break-word;
}
#user-email-mobile {
  font-size: 12px;
  color: #000;
  word-break: break-word;
}
.styled-error {
  color: #ff0055;
  background-color: #fff5f7;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ff0055;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 500;
}

#card-errors {
  margin-bottom: 15px;
}

    body, html {
      height: 100%;
      background: #fff;
    }

    .container {
      display: flex;
      min-height: 100vh;
      flex-direction: row;
    }
    /* LEFT PANEL (Desktop) */
    .left-panel h1 span, .mobile-header h1 span {
      /* color: white; */
    }


    .left-panel ul {
      list-style-type: disc;
      padding-left: 20px;
      font-size: 14px;
      line-height: 0.8;
      color: #000;
    }

    .left-panel li {
      margin-bottom: 10px;
    }

    /* RIGHT PANEL */
    .right-panel {
      width: 60%;
      /* flex: 1; */
      background: #fafafb;
      /* padding: 60px 40px 0px 40px; */
      align-items: flex-start;
      justify-content: center;
    }
    .right-image-wrapper {
      width: 100%;
      height: 100%;
    }
     .right-image-wrapper img{
      width: 100%;
      height: 100%;
    object-fit: cover;
    }

    .form-container {
      width: 100%;
    }

    .form-header {
      display: block;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }

    .form-container h2 {
      font-size: 20px;
      margin: 0;
    }

    .step-indicator {
      font-size: 20px;
      color: #C9cece;
    }

    .form-container h3 {
      font-size: 14px;
      font-weight: 700;
      margin: 25px 0 15px 0;
      color: #374151;
    }

    .plans {
      display: flex;
      flex-direction: column;
      margin-bottom: 30px;
    }

    .form-error-message {
      margin-bottom: 20px;
    }

    .styled-error {
      background-color: #fff6f8;
      border: 1px solid #f5c7d3;
      color: #cc0033;
      padding: 12px 16px;
      border-radius: 5px;
      font-size: 14px;
      line-height: 1.5;
    }

    .plan-option {
      border-radius: 4px;
      padding: 15px;
      cursor: pointer;
      display: flex;
      gap: 22px;
      align-items: flex-start;
      background: #fff;
      transition: all 0.2s ease;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .plan-option.active {
      background: #ffff;
      border: 2px solid #ff004e;
    }

    .plan-option input[type="radio"] {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 18px;
      height: 18px;
      border: 1px solid #999;
      border-radius: 4px;
      margin-top: 20px;
      cursor: pointer;
      position: relative;
      transition: all 0.2s ease;
      outline: none;
    }

    .plan-option input[type="radio"]:checked {
      background-color: #007bff;
      border: none;
      margin-top: 20px;
    }

    .plan-option input[type="radio"]:checked::after {
      content: '';
      position: absolute;
      width: 8px;
      height: 8px;
      background: white;
      border-radius: 5px;
      top: 5px;
      left: 5px;
    }

    .plan-details {
      font-size: 14px;
      color: #222;
      line-height: 1.5;
    }

    .plan-details strong {
      display: block;
      font-size: 16px;
    }

    .form-group input::placeholder {
      color: #C9cece;
      opacity: 1;
    }

    .form-group input:-ms-input-placeholder {
      color: #C9cece;
    }

    .form-group input::-ms-input-placeholder {
      color: #C9cece;
    }

    .form-group {
      position: relative;
    }

    .form-group input {
      display: block;
      width: 100%;
      padding: 14px 16px;
      font-size: 14px;
      border: none;
      border-radius: 5px;
      background: #fff;
      margin-bottom: 15px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
      transition: all 0.2s ease;
    }
    input#passwordField {
        margin-top: 19px;
    }

    .form-group input:focus {
      outline: none;
      box-shadow: 0 2px 10px rgba(255, 0, 85, 0.25);
    }

    .password-group {
      position: relative;
    }

    .toggle-password {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 13px;
      cursor: pointer;
      color: #888;
    }

    .toggle-password i {
      pointer-events: none;
    }

    .footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #474748;
      margin: 40px auto 3px;
      line-height: 1.6;
      width: 100%;
    }

    .footer-links {
      display: flex;
      gap: 10px;
    }

    .continue-btn {
      width: 100%;
      padding: 14px;
      background-color: #6a6a6b;
      color: white;
      font-size: 14px;
      font-weight: bold;
      margin-top: 10px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      text-transform: uppercase;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .terms {
      margin-top: 15px;
      font-size: 13px;
      color: #809099;
      line-height: 1.5;
      text-align: center;
    }

    .terms a {
      color: #809099;
      text-decoration: underline;
      font-weight: bold;
    }

    .terms a:hover {
      text-decoration: underline;
    }

    .login-link {
      font-size: 18px;
      margin-top: 25px;
      text-align: center;
      display: block;
      /* font-weight: bold; */
      color: #002135;
      text-decoration: underline;
      /* text-transform: uppercase; */
      padding: 12px;
      /* border: 1px solid #ddd;
      border-radius: 4px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: all 0.2s ease; */
    }

    /* .login-link:hover {
      background-color: #f5f5f5;
    } */

    /* Stripe Elements Styling */
    .stripe-field {
      padding: 14px 16px;
      border-radius: 5px;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
      transition: all 0.2s ease;
    }
    
    .stripe-field--focus {
      box-shadow: 0 2px 10px rgba(255, 0, 85, 0.25);
    }
    
    .stripe-field--invalid {
      border-color: #ff0055;
    }

    /* MOBILE RESPONSIVE STYLES */
    @media only screen and (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .mobile-header {
        display: block;
      }
      
      /* .left-panel {
        display: none!important;
      } */

   

      .form-header {
        margin-bottom: 20px;
      }

      .form-container h2 {
        font-size: 18px;
      }

      .step-indicator {
        font-size: 12px;
      }

      .form-container h3 {
        font-size: 14px;
        margin: 15px 0 10px 0;
      }

      .plans {
        margin-bottom: 20px;
      }

      .plan-option {
        padding: 12px;
      }

      .form-group input {
        padding: 10px;
        margin-bottom: 4px;
      }

      .continue-btn {
        padding: 12px;
      }

      .terms {
        font-size: 11px;
      }
      .badge{
        font-size: 8px;
        padding: 4px;
      }
      
      .login-link {
        margin-top: 20px;
        padding: 10px;
      }

      .footer {
        margin-top: 30px;
        font-size: 11px;
      }
    }

.left-panel {
  width: 40%;
  background-color: #FFF3F3;
  color: #000;
  /* flex: 1; */
  padding: 45px 75px;
  display: flex;
  flex-direction: column;
  position: relative;
}

  .user-info {
    position: absolute;
    top: 8px;
    right: 11px;
    text-align: right;
    display: block;
  }

    #logout-btn {
      background: none;
      border: none;
      font-weight: 700;
      color: #000;
      font-size: 14px;
      cursor: pointer;
      padding: 0;
      margin-bottom: 4px;
    }

    #logout-btn:hover {
      color: #ff0055;
      text-decoration: underline;
    }

    #user-email {
      font-size: 12px;
      color: #000;
      margin-bottom: 6px;
      word-break: break-word;
    }
    .styled-error {
      color: #ff0055;
      background-color: #fff5f7;
      padding: 12px;
      border-radius: 4px;
      border: 1px solid #ff0055;
      margin: 10px 0;
      font-size: 14px;
      font-weight: 500;
    }

    #card-errors {
      margin-bottom: 15px;
    }

    /* Add this to your CSS */


    .checkout-plan.active {
      background: #ffff;
      border: 2px solid #ff004e;
    }

    .checkout-plan input[type="radio"] {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 18px;
      height: 18px;
      border: 1px solid #999;
      border-radius: 4px;
      margin-top: 20px;
      cursor: pointer;
      position: relative;
      transition: all 0.2s ease;
      outline: none;
    }

    .checkout-plan input[type="radio"]:checked {
      background-color: #007bff;
      border: none;
      margin-top: 20px;
    }

    .checkout-plan input[type="radio"]:checked::after {
      content: '';
      position: absolute;
      width: 8px;
      height: 8px;
      background: white;
      border-radius: 5px;
      top: 5px;
      left: 5px;
    }
    .promo-container {
        font-family: Arial, sans-serif;
    }

    .promo-container label {
        display: block;
        font-weight: bold;
        margin-bottom: 6px;
        color: #2c3e50;
    }

    .promo-input-wrapper {
        display: flex;
        width: 100%;
    }

    .promo-input-wrapper input {
        flex: 1;
        border-radius: 5px 0 0 5px;
        width: 100%;
        padding: 14px 16px;
        font-size: 14px;
        border: none;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .promo-input-wrapper button {
        background-color: #5a5a5a;
        color: white;
        font-weight: bold;
        padding: 0 4%;
        border: none;
        border-radius: 0 6px 6px 0;
        cursor: pointer;
        font-size: 14px;
        margin-bottom: 5px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .promo-input-wrapper button:hover {
        background-color: #4b4b4b;
    }
    #promo-message.success {
        color: green;
    }

    #promo-message.error {
        color: red;
    }
    .promo-container {
      display: none; /* Hide by default */
    }

    .promo-container.visible {
      display: block; /* Show when needed */
    }

    .every_month {
      display: none; /* Hide by default */
    }

    .every_month.visible {
      display: contents;; /* Show when needed */
    }
    .counter-container {
      position: relative;
      height: 50px;
      width: 50px;
      border: 2px solid #000;
      overflow: hidden;
      display: inline-block;
      text-align: center;
    }
    
    .counter-digits {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      transition: transform 0.5s ease;
    }
    
    .counter-digit {
      height: 50px;
      line-height: 50px;
      font-weight: bold;
      font-family: 'Pano';
      font-size: 16px;
    }
    
    .counter-digit.current {
      transform: translateY(0);
    }
    
    .counter-digit.next {
      transform: translateY(100%);
    }
    
    .slide-out {
      animation: slideOut 0.5s forwards;
    }
    
    .slide-in {
      animation: slideIn 0.5s forwards;
    }
     @media (max-width: 480px) {
      .left-panel h1{
        display: none;
      }
      .left-panel {
      background-color: #F2F5F7;
      padding: 45px 25px;
    }
  }
    
    @keyframes slideOut {
      0% { transform: translateY(0); }
      100% { transform: translateY(-100%); }
    }
    
    @keyframes slideIn {
      0% { transform: translateY(100%); }
      100% { transform: translateY(0); }
    }