  * {
      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;
    }

    /* MOBILE HEADER */
    .mobile-header {
      display: none;
      background-color: #fbd1d7;
      padding: 25px 20px 15px;
      margin-bottom: 30px;
    }

    .mobile-header h1 {
      font-size: 24px;
      font-weight: bold;
      text-transform: uppercase;
      color: #000;
      line-height: 1.2;
      margin-bottom: 15px;
    }

    .mobile-price-info {
        background: white;
        padding: 12px 16px;
        font-size: 14px;
        line-height: 1.4;
        border-radius: 4px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        width: auto;
        max-width: 100%;
        position: relative;
        margin: 0;
        margin-bottom: -45px;
    }

    .mobile-price-info strong {
      font-weight: bold;
    }

    /* LEFT PANEL (Desktop) */

    .left-panel h1, .mobile-header h1 {
      font-family: 'Pano', sans-serif!important;
      font-weight: 400;
      font-size: 20px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 30px;
      line-height: 1.3;
    }

    .left-panel h1 span, .mobile-header h1 span {
      color: white;
      font-family: 'Pano'!important;
    }

    .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 {
      flex: 1;
      background: #fafafb;
      padding: 60px 40px 0px 40px;
      align-items: flex-start;
      justify-content: center;
    }

    .form-container {
      width: 100%;
    }

    .form-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }

    .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: 5px;
      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: #000;
      line-height: 1.5;
    }

    .terms a {
      color: #ffccd2;
      text-decoration: none;
      font-weight: bold;
    }

    .terms a:hover {
      text-decoration: underline;
    }

    .login-link {
      font-size: 13px;
      margin-top: 25px;
      text-align: center;
      display: block;
      font-weight: bold;
      color: #474748;
      text-decoration: none;
      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;
      }

      .mobile_log {
        display: block!important;
      }
      
      .left-panel {
        display: none!important;
      }

      .right-panel {
        padding: 20px 20px 0px 20px;
      }

      .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;
      }

      .login-link {
        margin-top: 20px;
        padding: 10px;
      }

      .footer {
        margin-top: 30px;
        font-size: 11px;
      }
    }
    /* Add these styles to your existing CSS */
.user-info {
}



.left-panel {
  background-color: #fad1d2;
  color: #000;
  flex: 1;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.user-info {
  position: absolute;
  top: 3px;
  right: 4px;
  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;
    }

    /* MOBILE HEADER */
    .mobile-header {
      display: none;
      background-color: #fbd1d7;
      padding: 25px 20px 15px;
      margin-bottom: 30px;
    }

    .mobile-header h1 {
      font-size: 18px;
      font-weight: bold;
      text-transform: uppercase;
      color: #000;
      line-height: 1.2;
      margin-bottom: 15px;
    }

    .mobile-price-info {
        background: white;
        padding: 12px 16px;
        font-size: 14px;
        line-height: 1.4;
        border-radius: 4px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        width: auto;
        max-width: 100%;
        position: relative;
        margin: 0;
        margin-bottom: -45px;
    }

    .mobile-price-info strong {
      font-weight: bold;
    }

    /* LEFT PANEL (Desktop) */
    .left-panel h1 span, .mobile-header h1 span {
      color: white;
    }

    .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 {
      flex: 1;
      background: #fafafb;
      padding: 60px 40px 0px 40px;
      align-items: flex-start;
      justify-content: center;
    }

    .form-container {
      width: 100%;
    }

    .form-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }

    .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: 5px;
      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: #000;
      line-height: 1.5;
    }

    .terms a {
      color: #ffccd2;
      text-decoration: none;
      font-weight: bold;
    }

    .terms a:hover {
      text-decoration: underline;
    }

    .login-link {
      font-size: 13px;
      margin-top: 25px;
      text-align: center;
      display: block;
      font-weight: bold;
      color: #474748;
      text-decoration: none;
      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;
      }

      .right-panel {
        padding: 20px 20px 0px 20px;
      }

      .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;
      }

      .login-link {
        margin-top: 20px;
        padding: 10px;
      }

      .footer {
        margin-top: 30px;
        font-size: 11px;
      }
    }
    /* Add these styles to your existing CSS */
.user-info {
}



.left-panel {
  background-color: #fad1d2;
  color: #000;
  flex: 1;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.user-info {
  position: absolute;
  top: 3px;
  right: 4px;
  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;
    }
    
    @keyframes slideOut {
      0% { transform: translateY(0); }
      100% { transform: translateY(-100%); }
    }
    
    @keyframes slideIn {
      0% { transform: translateY(100%); }
      100% { transform: translateY(0); }
    }