
    .progress-bar {
      width: 100%;
      height: 12px;
      background-color: #f1f5f9;
      border-radius: 5px;
      position: fixed;
      bottom: 0;
      left: 0;
      margin-bottom: 0;
    }

    .progress-bar span {
      display: block;
      height: 100%;
      background-color: #1e40af;
      border-radius: 5px;
      transition: width 0.3s ease-in-out;
    }

    .video-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: blur(10px);
      z-index: -1;
      opacity: 0.7;
    }

    .next-btn, .prev-btn {
      background-color: #1e40af;
      color: #fff;
      padding: 12px 30px;
      border-radius: 8px;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

    .next-btn:hover, .prev-btn:hover {
      background-color: #3b82f6;
    }

    .step-container {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      text-align: center;
      padding-bottom: 100px; /* Space for progress bar and back button */
    }

    .step {
      display: none;
    }

    .step.active {
      display: block;
    }

    .step-title {
      font-size: 36px;
      font-weight: bold;
      color: #1e40af;
      margin-bottom: 20px;
    }

    .step-subtitle {
      font-size: 18px;
      color: #4b5563;
      margin-bottom: 30px;
    }

    .input-field {
      padding: 12px;
      width: 100%;
      border-radius: 8px;
      border: 1px solid #ccc;
      margin-bottom: 20px;
      font-size: 16px;
      outline: none;
    }

    .input-field:focus {
      border-color: #1e40af;
    }

    .info-section {
      background-color: #eef2ff;
      padding: 30px;
      border-radius: 12px;
      margin-top: 40px;
      width: 100%;
      max-width: 1000px;
    }

    .info-title {
      font-size: 28px;
      font-weight: bold;
      color: #1e40af;
      margin-bottom: 15px;
    }

    .info-text {
      font-size: 16px;
      color: #4b5563;
      margin-bottom: 20px;
    }

    .info-list {
      font-size: 16px;
      color: #1f2937;
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .info-list li {
      margin-bottom: 10px;
    }

    .name-email-container {
      display: flex;
      gap: 20px;
    }

    .name-email-container input {
      flex: 1;
    }

    .error-text {
      color: red;
      font-size: 14px;
      margin-top: 10px;
      display: inline-block;
    }

    .success-step {
      display: none;
      background-color: #eef2ff;
      padding: 40px;
      border-radius: 12px;
      width: 100%;
      max-width: 600px;
      text-align: center;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }

    .success-step h2 {
      font-size: 28px;
      font-weight: bold;
      color: #1e40af;
    }

    .success-step p {
      font-size: 18px;
      color: #4b5563;
      margin-bottom: 20px;
    }

    .success-step .close-btn {
      background-color: #1e40af;
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
    }

    .success-step .close-btn:hover {
      background-color: #3b82f6;
    }

    .logo {
      position: absolute;
      top: 20px;
      left: 20px;
      max-width: 150px;
      z-index: 10;
    }

    .terms-text {
      font-size: 14px;
      color: #6b7280;
      margin-top: 20px;
    }

    .terms-text a {
      color: #1e40af;
      text-decoration: none;
    }

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

    .input-field.invalid {
      border-color: red;
      box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }

    .input-field.valid {
      border-color: green;
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    }

    /* Back button styles */
    .back-btn {
      position: fixed;
      bottom: 40px; /* Positioned just above the progress bar */
      left: 20px;
      background-color: #1e40af;
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: normal; /* Reduced boldness */
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      z-index: 1000;
    }

    .back-btn:hover {
      background-color: #3b82f6;
    }
