<!-- Styles -->
<style>
  /* Full Width Background Container */
  .background-container {
      width: 100%;
      height: 100vh; /* Full viewport height */
      background: #F9F9F9 url('../png/mask%20group%20(1)-2.png') no-repeat;
      background-size: cover;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  /* Centered Form Container */
  .form-container {
      max-width: 1200px;
      width: 100%;
      padding: 50px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin: auto;
  }

  form {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }

  .form-input-container {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      max-width: 600px;
  }

  .email-label {
      font-size: 18px;
      margin-right: 10px;
      flex-shrink: 0;
  }

  .form-input {
      padding: 12px;
      flex-grow: 1;
      border: 1px solid #ddd;
      border-radius: 25px;
      background-color: #f0f0f0;
      font-size: 16px;
      transition: all 0.3s;
  }

  .form-input:focus {
      border-color: #65BF48;
      outline: none;
  }

  .submit-button {
      background-color: #65BF48;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      cursor: pointer;
      width: 150px;
  }

  .submit-button:hover {
      background-color: #56a943;
  }

  /* Referral Link Section - Now Inline */
  #referral-link-section {
      margin-top: 30px;
      display: flex;
      align-items: center; /* Align link and button on the same line */
      gap: 10px;
      width: 100%;
      max-width: 600px;
  }

  .referral-link {
      font-size: 16px;
      color: #65BF48 !important; /* Green color */
      text-decoration: none;
      word-break: break-word;
  }

  .referral-link:hover {
      text-decoration: underline;
  }

  .copy-button {
      background-color: #20496D
        ;color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      cursor: pointer;
      width: 150px;
 
      cursor: pointer;
      white-space: nowrap;
  }

  .copy-button:hover {
      background-color: #1a3a56;
  }
</style>