
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(to right, #edf1f5, #e4ebf5);
    }

    .form-container {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 20px;
    }

    .wizard {
      background: #fff;
      border-radius: 12px;
      max-width: 700px;
      width: 100%;
      padding: 40px 30px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    h1 {
      text-align: center;
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: #333;
    }

    .step-label {
      font-weight: bold;
      margin-bottom: 10px;
      display: block;
      color: #555;
    }

    .progress {
      height: 8px;
      background-color: #dce1e6;
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 30px;
    }

    .progress-bar {
      height: 100%;
      background-color: #3b82f6;
      transition: width 0.3s ease-in-out;
      width: 14.2%;
    }

    .step { display: none; }
    .step.active { display: block; animation: fadeIn 0.4s ease-in-out; }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(10px);}
      to {opacity: 1; transform: translateY(0);}
    }

    label {
      display: block;
      font-weight: 500;
      margin-bottom: 8px;
      color: #333;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #ccc;
      border-radius: 0;
      background-color: #f9fafb;
      font-size: 1rem;
      margin-bottom: 15px;
    }

    input:focus, textarea:focus{
      border-color: #3b82f6;
      outline: none;
      background-color: #fff;
    }

    .invalid-feedback {
      font-size: 0.875rem;
      color: #e53935;
      margin-top: -12px;
      margin-bottom: 10px;
      display: none;
    }

    .btn {
      appearance: none;
      padding: 12px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .btn-primary {
      background-color: #3b82f6;
      color: #fff;
    }

    .btn-primary:hover { background-color: #2563eb; }

    .btn-secondary {
      background-color: #6b7280;
      color: white;
    }

    .btn-secondary:hover { background-color: #4b5563; }

    .btn-success {
      background-color: #10b981;
      color: #fff;
    }

    .btn-success:hover { background-color: #059669; }

    .btn-group {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
      gap: 10px;
    }

    .btn-full {
      width: 100%;
      margin-top: 10px;
    }

    .congrats {
      text-align: center;
      padding: 30px 10px;
      color: #10b981;
    }

    .modal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 10;
    }

    .modal-content {
      background: white;
      padding: 30px;  
      width: 600px;
      text-align: left;
    } 
 
    .modal-content input {
      width: 100%;
      margin-bottom: 10px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 0;
    }

    .close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  float: right;
  text-align: center;
  cursor: pointer;
  color: #666;
  margin: auto;
}
.close-btn:hover {
  color: #e53935;
}
.modal.active { display: flex; }



.affiliate-box-options {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.select-box {
  flex: 1 1 45%;
  padding: 15px;
  border: 2px solid #3b82f6;
  background-color: #f0f7ff;
  color: #1e40af;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.select-box i {
  margin-right: 8px;
}

.select-box:hover {
  background-color: #dbeafe;
}

.select-box.active {
  background-color: #3b82f6;
  color: #fff;
  border-color: #2563eb;
}


    .top-banner {
        color: white; /* Text color */
        text-align: center; /* Center the text */
        padding: 10px 15px; /* Padding for better spacing */
        font-weight: bold; /* Make text bold */
        font-size: 16px; /* Adjust the text size */
        width: 100%; /* Full width */
    }
    nav a {
    color: white;
    }
