
    :root {
      --page-8k8-com-login-password-primary-color: #f7b32b; /* A vibrant gold/orange */
      --page-8k8-com-login-password-secondary-color: #333;
      --page-8k8-com-login-password-text-color: #eee;
      --page-8k8-com-login-password-dark-bg: #1a1a1a;
      --page-8k8-com-login-password-light-bg: #2a2a2a;
      --page-8k8-com-login-password-border-color: #444;
      --page-8k8-com-login-password-button-hover-color: #e0a322;
      --page-8k8-com-login-password-spacing-unit: 1rem;
    }

    .page-8k8-com-login-password {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-8k8-com-login-password-dark-bg);
      color: var(--page-8k8-com-login-password-text-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
      overflow-x: hidden;
    }

    .page-8k8-com-login-password__section {
      padding: calc(2 * var(--page-8k8-com-login-password-spacing-unit)) var(--page-8k8-com-login-password-spacing-unit);
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-login-password__section--dark {
      background-color: var(--page-8k8-com-login-password-dark-bg);
    }

    .page-8k8-com-login-password__section--light {
      background-color: var(--page-8k8-com-login-password-light-bg);
    }

    .page-8k8-com-login-password__hero-section {
      position: relative;
      background-color: var(--page-8k8-com-login-password-dark-bg);
      color: #fff;
      padding-top: 10px; /* Decorative top spacing, relying on body padding for header offset */
      padding-bottom: 4rem;
      overflow: hidden;
    }

    .page-8k8-com-login-password__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8k8-com-login-password__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem var(--page-8k8-com-login-password-spacing-unit);
      text-align: center;
    }

    .page-8k8-com-login-password__hero-title {
      font-size: 3.2rem;
      margin-bottom: 1rem;
      color: var(--page-8k8-com-login-password-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-login-password__hero-subtitle {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #ccc;
    }

    .page-8k8-com-login-password__button {
      display: inline-block;
      background-color: var(--page-8k8-com-login-password-primary-color);
      color: var(--page-8k8-com-login-password-dark-bg);
      padding: 0.8rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1rem;
    }

    .page-8k8-com-login-password__button:hover {
      background-color: var(--page-8k8-com-login-password-button-hover-color);
    }

    .page-8k8-com-login-password__h2 {
      font-size: 2.5rem;
      color: var(--page-8k8-com-login-password-primary-color);
      margin-bottom: 2rem;
      text-align: center;
    }

    .page-8k8-com-login-password__h3 {
      font-size: 1.8rem;
      color: var(--page-8k8-com-login-password-text-color);
      margin-bottom: 1rem;
    }

    .page-8k8-com-login-password__text-content {
      text-align: left;
      margin-bottom: 2rem;
    }

    .page-8k8-com-login-password__text-content p {
      margin-bottom: 1rem;
      color: #ccc;
    }

    .page-8k8-com-login-password__image-container {
      margin: 2rem auto;
      max-width: 800px;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-login-password__image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-8k8-com-login-password__steps-list {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      text-align: left;
    }

    .page-8k8-com-login-password__steps-item {
      background-color: var(--page-8k8-com-login-password-light-bg);
      border: 1px solid var(--page-8k8-com-login-password-border-color);
      border-radius: 8px;
      padding: 1.5rem;
      flex: 1;
      min-width: 280px;
      max-width: 380px;
      box-sizing: border-box;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      position: relative;
      padding-left: 4rem;
    }

    .page-8k8-com-login-password__steps-item::before {
      content: attr(data-step);
      position: absolute;
      left: 1.5rem;
      top: 1.5rem;
      background-color: var(--page-8k8-com-login-password-primary-color);
      color: var(--page-8k8-com-login-password-dark-bg);
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .page-8k8-com-login-password__steps-item h3 {
      margin-top: 0;
      margin-bottom: 0.8rem;
      color: var(--page-8k8-com-login-password-primary-color);
    }

    .page-8k8-com-login-password__steps-item p {
      color: #bbb;
    }

    .page-8k8-com-login-password__faq-container {
      margin-top: 3rem;
      text-align: left;
    }

    .page-8k8-com-login-password__faq-item {
      background-color: var(--page-8k8-com-login-password-light-bg);
      border: 1px solid var(--page-8k8-com-login-password-border-color);
      margin-bottom: 1rem;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-login-password__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-8k8-com-login-password-secondary-color);
      color: var(--page-8k8-com-login-password-text-color);
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-password__faq-question:hover {
      background-color: #444;
    }

    .page-8k8-com-login-password__faq-question h3 {
      margin: 0;
      font-size: 1.2rem;
      color: var(--page-8k8-com-login-password-text-color);
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.8rem;
      line-height: 1;
      color: var(--page-8k8-com-login-password-primary-color);
      pointer-events: none; /* Prevent toggle from intercepting click */
      transition: transform 0.3s ease;
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-toggle {
      transform: rotate(45deg); /* Rotates the plus sign to form an 'x' or minus */
    }

    .page-8k8-com-login-password__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--page-8k8-com-login-password-light-bg);
      color: #bbb;
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-8k8-com-login-password__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      justify-content: center;
    }

    .page-8k8-com-login-password__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      border-radius: 50px;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s ease, background-color 0.3s ease;
      font-size: 1.1rem;
      cursor: pointer;
      border: none;
    }

    .page-8k8-com-login-password__floating-button:hover {
      transform: translateY(-3px);
    }

    .page-8k8-com-login-password__floating-button--register {
      background-color: var(--page-8k8-com-login-password-primary-color);
      color: var(--page-8k8-com-login-password-dark-bg);
    }

    .page-8k8-com-login-password__floating-button--register:hover {
      background-color: var(--page-8k8-com-login-password-button-hover-color);
    }

    .page-8k8-com-login-password__floating-button--login {
      background-color: #555;
      color: #fff;
    }

    .page-8k8-com-login-password__floating-button--login:hover {
      background-color: #666;
    }

    @media (max-width: 768px) {
      .page-8k8-com-login-password__hero-title {
        font-size: 2.5rem;
      }

      .page-8k8-com-login-password__hero-subtitle {
        font-size: 1.2rem;
      }

      .page-8k8-com-login-password__h2 {
        font-size: 2rem;
      }

      .page-8k8-com-login-password__h3 {
        font-size: 1.5rem;
      }

      .page-8k8-com-login-password__section {
        padding: calc(1.5 * var(--page-8k8-com-login-password-spacing-unit)) 1rem;
      }

      .page-8k8-com-login-password__steps-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0;
      }

      .page-8k8-com-login-password__steps-item {
        width: 100% !important;
        max-width: 95% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 3.5rem;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-login-password__steps-item::before {
        left: 1rem;
        top: 1rem;
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
      }

      .page-8k8-com-login-password__faq-question {
        padding: 12px 15px;
      }

      .page-8k8-com-login-password__faq-question h3 {
        font-size: 1.1rem;
      }

      .page-8k8-com-login-password__faq-toggle {
        font-size: 1.5rem;
      }

      .page-8k8-com-login-password__faq-answer {
        padding: 0 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-answer {
        padding: 15px 15px !important;
      }

      .page-8k8-com-login-password__floating-buttons {
        width: 95%;
        gap: 10px;
        bottom: 15px;
      }

      .page-8k8-com-login-password__floating-button {
        padding: 10px 0;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login-password__hero-title {
        font-size: 2rem;
      }
      .page-8k8-com-login-password__hero-subtitle {
        font-size: 1rem;
      }
      .page-8k8-com-login-password__h2 {
        font-size: 1.8rem;
      }
      .page-8k8-com-login-password__faq-question h3 {
        font-size: 1rem;
      }
      .page-8k8-com-login-password__floating-buttons {
        flex-direction: column;
        gap: 8px;
        max-width: 250px;
      }
      .page-8k8-com-login-password__floating-button {
        padding: 10px 0;
      }
    }

    /* Ensure all images are responsive */
    .page-8k8-com-login-password img {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }
    .page-8k8-com-login-password__image-wrapper {
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden !important;
      box-sizing: border-box !important;
    }
  