<turbo-stream action="update" target="modal"><template><div id="modal-component" data-controller="modal-component">
  <div
    class="fixed inset-0 bg-gray-400 z-10 opacity-30"
    data-action="click->modal-component#close"
  >
  </div>
  <div
    class="
      bg-white p-5 rounded-2xl modal-animation-open
      border fixed z-20 left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2
      transition-all max-h-[calc(100vh-2rem)] overflow-y-auto
      w-auto lg:w-[440px]
    "
    data-modal-component-target="container"
  >
    
  <h2 class="text-xl text-center font-bold mb-3 text-black">
    Sign up to continue
  </h2>
  <p class="mb-4 text-gray-600 text-center">
    Create an account to start your interview practice.
  </p>

  <div data-controller="sign-up-plan-selector" class="space-y-3">
    <p class="font-medium text-gray-900">
      Which best describes you?
    </p>

    <label class="flex items-start justify-center gap-2 cursor-pointer group p-4 rounded-lg border-2 border-gray-200 has-[:checked]:border-primary has-[:checked]:ring-2 has-[:checked]:ring-primary">
  <input type="radio" name="plan_choice" value="free_trial" class="sr-only" checked="checked" data-action="change-&gt;sign-up-plan-selector#select" data-sign-up-plan-selector-plan-param="free_trial">
  <div class="w-[19px] h-[19px] rounded-full border-2 border-gray-300 shrink-0 flex items-center justify-center">
    <div class="w-[9px] h-[9px] rounded-full bg-blue-500 scale-0 group-has-[:checked]:scale-100 transition-transform"></div>
  </div>
  
      <div class="flex-1">
        <div class="font-semibold text-gray-900">
          School or district
        </div>
        <div class="text-sm text-gray-600">
          I’m signing up as part of a school, district, or organization.
        </div>
      </div>

</label>
    <label class="flex items-start justify-center gap-2 cursor-pointer group p-4 rounded-lg border-2 border-gray-200 has-[:checked]:border-primary has-[:checked]:ring-2 has-[:checked]:ring-primary">
  <input type="radio" name="plan_choice" value="home_user_free_trial" class="sr-only" data-action="change-&gt;sign-up-plan-selector#select" data-sign-up-plan-selector-plan-param="home_user_free_trial">
  <div class="w-[19px] h-[19px] rounded-full border-2 border-gray-300 shrink-0 flex items-center justify-center">
    <div class="w-[9px] h-[9px] rounded-full bg-blue-500 scale-0 group-has-[:checked]:scale-100 transition-transform"></div>
  </div>
  
      <div class="flex-1">
        <div class="font-semibold text-gray-900">
          Home or family
        </div>
        <div class="text-sm text-gray-600">
          I am 18 or over and the parent or guardian of the student using this account. I agree to the <a href="https://careerclutch.ai/trust-and-compliance/privacy-notice-home-users.html" target="_blank" rel="noopener" class="text-blue-600 hover:text-blue-700 underline">Privacy Notice</a> and <a href="https://careerclutch.ai/trust-and-compliance/coppa-notice-home-users.html" target="_blank" rel="noopener" class="text-blue-600 hover:text-blue-700 underline">COPPA Notice</a>.
        </div>
      </div>

</label>
    <p class="text-xs text-gray-500 text-center">
      We’ll use this to personalize your setup.
    </p>

    <div class="space-y-3 pt-2">
      <form data-turbo="false" data-sign-up-plan-selector-target="form" action="/auth/google_oauth2?plan=free_trial" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="-8dpzilGMsvORekRCAisNID4t4DWUiYG3ILrmEyr7O7coW5Z7j55uGTAC9mKCxSDScYi_VwTPuxN0IDc-cs_7Q" autocomplete="off" />
          <button name="button" type="submit" class="leading-none cursor-pointer disabled:opacity-75 disabled:cursor-not-allowed block text-center whitespace-nowrap select-none focus:border-gray focus:outline-hidden focus:ring border leading-normal hover:no-underline rounded bg-white hover:bg-gray-100 border-gray-300 px-8 py-2  flex gap-2 items-center w-full justify-center">
    
          <img class="h-5" src="/assets/icons/google_logo_@2x-64609814.png" />
          Sign up with Google

</button></form>      <form data-turbo="false" data-sign-up-plan-selector-target="form" action="/auth/microsoft_graph?plan=free_trial" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="CNCi2bZZB_ztnxg6rME-ic94ioTW2ixkPQvFLFFi62LxvdNyjZCJZrpIgy-i0Dc1mV4K5_96c6bbDJ4baOp3Cw" autocomplete="off" />
          <button name="button" type="submit" class="leading-none cursor-pointer disabled:opacity-75 disabled:cursor-not-allowed block text-center whitespace-nowrap select-none focus:border-gray focus:outline-hidden focus:ring border leading-normal hover:no-underline rounded bg-white hover:bg-gray-100 border-gray-300 px-8 py-2  flex gap-2 items-center w-full justify-center">
    
          <img class="h-5" src="/assets/icons/microsoft_logo-1fc68ad8.png" />
          Sign up with Microsoft

</button></form>    </div>
  </div>

    <div class="absolute right-4 top-4 sm:right-6 sm:top-6">
      <div
        class="icon-cross text-lg cursor-pointer"
        role="button"
        data-action="click->modal-component#close"
      >
      </div>
    </div>
  </div>
</div>
</template></turbo-stream>