.header_header__9izbR {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--grey-100);
}

.header_header__9izbR .header_logo__Axwlj {
    height: 2rem;
    aspect-ratio: auto 70 / 32;
  }

.header_header__9izbR .header_actions__4elPT {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

.header_langSelector__dr_t4 {
  display: flex;
  position: relative;

  height: 2rem;
}

.header_langSelector__dr_t4 button {
    display: flex;
    align-items: center;
    border: 1px solid var(--grey-300);
    border-radius: 0.5rem;
    background-color: var(--white);
    box-shadow: 0px 1px 2px 0px #0000000a;

    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.125rem;
    text-align: center;
    color: var(--grey-500);

    padding: 0.25rem 0.75rem;
    cursor: pointer;
  }

:is(.header_langSelector__dr_t4 button) img {
      width: 1rem;
      height: 1rem;
      margin-left: 0.5rem;
    }

.header_langSelector__dr_t4 dialog[open] {
    position: absolute;
    top: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    width: 100%;

    border: 1px solid var(--grey-300);
    border-radius: 0.5rem;
    background-color: var(--white);
  }

:is(.header_langSelector__dr_t4 dialog[open]) a {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      width: 100%;
      height: 2rem;
      color: var(--black-900);
      padding-left: 0.75rem;
      text-decoration: none;
    }

:is(.header_langSelector__dr_t4 dialog[open]) a:hover,:is(.header_langSelector__dr_t4 dialog[open]) a:focus {
      background-color: var(--grey-300);
    }

/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}
.PhoneInput {
  display: flex;
  height: 2.25rem; /* h-9 */
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.PhoneInput--focus {
  border: 1px solid var(--ring);
}

.PhoneInputCountry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 100%;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 0.375rem 0 0 0.375rem;
  background-color: transparent;
  box-shadow: var(--shadow-xs);
  transition:
    color 0.2s,
    box-shadow 0.2s;
  margin-right: 0;
}

.PhoneInputCountrySelect {
  -webkit-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  opacity: 0;
}

.PhoneInputCountryIcon {
  pointer-events: none;
}

.PhoneInput input[type="tel"] {
  flex: 1 1;
  height: 100%;
  width: 100%;
  min-width: 0;
  padding: 0.25rem 2rem 0.25rem 0.75rem;
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 0.375rem 0.375rem 0;
  background-color: transparent;
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition:
    color 0.2s,
    box-shadow 0.2s;
  outline: none;
  color: #1d1e21;
}

.PhoneInput:focus-visible {
  border: 1px solid var(--ring);
}

.PhoneInput input[type="tel"]::placeholder {
  color: var(--muted-foreground);
}

.PhoneInput input[type="tel"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.PhoneInput--disabled .PhoneInputCountry {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.PhoneInput--error .PhoneInputCountry {
  border-color: var(--destructive);
}

.PhoneInput--error input[type="tel"] {
  border-color: var(--destructive);
}

.PhoneInput--error input[type="tel"]:focus-visible {
  border-color: var(--destructive);
  box-shadow: 0 0 0 1px var(--destructive) / 0.2;
}

.PhoneInput--error .PhoneInputCountry:focus-within {
  border-color: var(--destructive);
  box-shadow: 0 0 0 1px var(--destructive) / 0.2;
}

/* Responsive font size */
@media (min-width: 768px) {
  .PhoneInput input[type="tel"] {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

/* Container styling */
.OTPInput_container__32xZB {
  display: flex;
  align-items: center;
}

.OTPInput_container__32xZB:has(:disabled) {
  opacity: 0.3;
}

/* Slot groups styling */
.OTPInput_slotGroup__mu9tc {
  display: flex;
}

/* Individual slot styling */
.OTPInput_slot__Z2LgT {
  position: relative;
  width: 40px;
  height: 56px;
  text-align: center;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
  border-top: 1px solid var(--border-color, #e2e8f0);
  border-bottom: 1px solid var(--border-color, #e2e8f0);
  border-right: 1px solid var(--border-color, #e2e8f0);
  outline: 0 solid var(--accent-foreground-color, #1e293b);
}

.OTPInput_slot__Z2LgT:first-child {
  border-left: 1px solid var(--border-color, #e2e8f0);
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.OTPInput_slot__Z2LgT:last-child {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.OTPInput_container__32xZB:hover .OTPInput_slot__Z2LgT,
.OTPInput_container__32xZB:focus-within .OTPInput_slot__Z2LgT {
  border-color: rgba(30, 41, 59, 0.2);
}

.OTPInput_slot__Z2LgT.OTPInput_active__QJjyj {
  outline-width: 4px;
  outline-color: var(--accent-foreground-color, #1e293b);
}

/* Character styling */
.OTPInput_char__1pExH {
  opacity: 1;
}

/* Using an attribute selector instead of :global pseudo-class */
[data-input-otp-placeholder-shown] ~ .OTPInput_char__1pExH {
  opacity: 0.2;
}

/* Caret styling */
.OTPInput_caretContainer__yOGox {
  position: absolute;
  pointer-events: none;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: OTPInput_caret-blink__Issfe 1.2s ease-out infinite;
}

.OTPInput_caret__rk8SL {
  width: 1px;
  height: 32px;
  background-color: white;
}

/* Dash styling */
.OTPInput_dashContainer__TQpOl {
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
}

.OTPInput_dash__IUF7c {
  width: 12px;
  height: 4px;
  border-radius: 9999px;
  background-color: var(--border-color, #e2e8f0);
}

/* Keyframes animation */
@keyframes OTPInput_caret-blink__Issfe {
  0%,
  70%,
  100% {
    opacity: 1;
  }
  20%,
  50% {
    opacity: 0;
  }
}

.form_container__Tmdob {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.form_description__nKES6 {
  text-align: center;
  color: var(--grey-600);
  line-height: 1.5;
}

.form_responsiveEmail__8HKd4 {
  color: var(--primary-700);
  /* stylelint-disable */
  word-break: break-word;
}

.form_anotherCodeButton__n5ovB {
  padding: 0;
  height: auto;
  min-height: auto;
}

.form_tryAnotherCode__05v7I {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .form_container__Tmdob {
    gap: 1rem;
  }
}

.page_container__1MqPa {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 80px); /* Account for header height */
  padding: 2rem;
}

.page_content__1wffB {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.page_illustration__L3DHv {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;
}

.page_title__P_dED {
  margin-bottom: 1rem;
  color: var(--primary-900);
}

@media (max-width: 768px) {
  .page_main__Kwko6 {
    padding: 1rem;
  }

  .page_illustration__L3DHv {
    width: 80px;
  }
}

.form_container__nS5_p {
  max-width: 25rem;
  margin-top: 1.5rem;
}

.form_emailDisplay__AAQad {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--grey-100);
  border-radius: 0.5rem;
  color: var(--grey-700);
  font-size: 0.875rem;
}

.form_row__Bw37X {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.form_row__Bw37X label {
    width: calc(50% - 1rem);
  }

.form_row__Bw37X input {
    width: 100%;
  }

.form_inputGroup__vT0AO {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form_passwordValidationTips__NNaS6 {
  margin-top: 0.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.form_passwordValidationTips__NNaS6 .form_isError__dqEFu {
    color: var(--danger-200);
  }

.form_submitBtn__1Xex3 {
  margin-bottom: 1rem;
}

.form_googleSignUp__YBQQH {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.form_terms__d16Ly {
  text-align: center;
}

.form_confidentiality__hqGpf {
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: var(--black-1000);
}

.header_header__8DOzg {
  width: 100%;
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.header_header__8DOzg .header_logo__tCEKq {
    height: 2rem;
    margin-left: 1.5rem;
    aspect-ratio: auto 70 / 32;
  }

.header_header__8DOzg .header_actions__NvqNo {
    display: flex;
    align-items: center;
    gap: 3rem;

    margin-right: 1.5rem;
  }

.header_langSelector__gwzvm {
  display: flex;
  position: relative;

  height: 2rem;
}

.header_langSelector__gwzvm button {
    display: flex;
    align-items: center;
    border: 1px solid var(--grey-300);
    border-radius: 0.5rem;
    background-color: var(--white);
    box-shadow: 0px 1px 2px 0px #0000000a;

    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.125rem;
    text-align: center;
    color: var(--grey-500);

    padding: 0.25rem 0.75rem;
    cursor: pointer;
  }

:is(.header_langSelector__gwzvm button) img {
      width: 1rem;
      height: 1rem;
      margin-left: 0.5rem;
    }

.header_langSelector__gwzvm dialog[open] {
    position: absolute;
    z-index: 1;
    top: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    width: 100%;

    border: 1px solid var(--grey-300);
    border-radius: 0.5rem;
    background-color: var(--white);
  }

:is(.header_langSelector__gwzvm dialog[open]) a {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      width: 100%;
      height: 2rem;
      color: var(--black-900);
      padding-left: 0.75rem;
      text-decoration: none;
    }

:is(.header_langSelector__gwzvm dialog[open]) a:hover,:is(.header_langSelector__gwzvm dialog[open]) a:focus {
      background-color: var(--grey-300);
    }

@media (max-width: 1024px) {
  .header_header__8DOzg {
    height: auto;
  }

    .header_header__8DOzg .header_logo__tCEKq {
      margin-left: 0;
    }

    .header_header__8DOzg .header_actions__NvqNo {
      gap: 0.5rem;

      margin-right: 0;
    }
}

.styles_container__Dio4T {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 100vh;
}

.styles_leftPanel__SaHiQ {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 30px 24px;
  width: 100%;
  max-width: calc(100% - 380px);
}

.styles_rightPanel__tmQRZ {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 380px;
  padding: 32px;
  background: #f8f9fa;
}

.styles_question__BK5Yv {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
}

.styles_question__BK5Yv h1 {
  margin-bottom: 32px;
  text-align: center;
  max-width: 600px;
}

.styles_choices__Lxf7F {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 600px;
}

.styles_choice__qXEJi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
}

.styles_choice__qXEJi:hover {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.styles_choiceContent__JPVlw {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.styles_choiceContent__JPVlw span:first-child {
  color: #1a1a1a;
}

.styles_choiceContent__JPVlw span:last-child {
  color: #666;
}

.styles_chevron__RahLq {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.styles_pubLogo__Rk5Ih {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.styles_pubTitle__Bx5FE {
  margin-bottom: 16px;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
}

.styles_pubSubtitle__626PJ {
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.styles_notListed__6NqFr {
  margin-top: 1rem;
  align-self: center;
}

@media (max-width: 768px) {
  .styles_container__Dio4T {
    flex-direction: column;
  }

  .styles_leftPanel__SaHiQ {
    max-width: 100%;
  }

  .styles_rightPanel__tmQRZ {
    display: none;
  }

  .styles_choice__qXEJi {
    padding: 20px 24px;
  }
}

.companyAddForm_container__zgq8R {
  display: flex;
  flex: 1 1;
  align-items: center;
  justify-content: center;
}

.companyAddForm_wrapper__6X5pJ {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  max-width: 480px;
}

.companyAddForm_content__4ZGTq {
  display: flex;
  flex-direction: column;
}

.companyAddForm_title__j0w9J {
  margin-bottom: 0.75rem;
}

.companyAddForm_description__8OHTJ {
  margin-bottom: 0.75rem;
}

.companyAddForm_back-container__wZlKY {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.companyAddForm_form__dzSK6 .companyAddForm_textarea-style__G8MSs {
    resize: vertical;
    min-height: 4rem;
    max-height: 8rem;
  }

.companyAddForm_form__dzSK6 .companyAddForm_siren-help__edS_C {
    font-size: 0.75rem;
    margin-bottom: 1.125rem;
  }

.companyAddForm_form__dzSK6 .companyAddForm_siren-error__qQnIn {
    font-size: 0.75rem;
  }

.form_container__9FZ4U {
  display: flex;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.form_container__9FZ4U label {
  flex: 1 1;
}

.form_container__9FZ4U .form_search-error__bpQFD {
  flex-basis: 100%;
}

.form_list__7OJRB {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form_item__MSdrO {
  width: 100%;
}

.form_itemBtn__KIy6E {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem;
  background-color: white;
  border: 1px solid #e6e8eb;
  border-radius: 0.75rem;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 2px 0px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.form_itemBtn__KIy6E:hover {
  border-color: #ccc;
  background-color: #fafafa;
}

.form_itemSubmittedSelected__y2nOw {
  border-color: #222222;
}

.form_itemSubmittedNonSelected__rFIgW {
  opacity: 0.7;
}

.form_companyInfo__9vAs_ {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form_companyName__r2Cf3 {
  font-weight: 500;
  font-size: 1rem;
  color: #000;
}

.form_companyAddress__Ik4UJ {
  font-weight: 400;
  font-size: 0.875rem;
  color: #6b7280;
}

.form_companySiren__CSrA2 {
  font-weight: 400;
  font-size: 0.875rem;
  color: #6b7280;
}

.form_arrowIcon__VLZQR {
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Keep the existing styles for the manual link */
.form_inner__dqz08 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .form_container__9FZ4U {
    justify-content: flex-start;
  }
}

.page_container__yz5RI {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  flex: 1 1;
}

.page_inner__Xq_AR {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  gap: 1rem;
}

.page_manualLink__rzYDx {
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}

.page_manualLinkContent__tapAs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border: 2px dashed #4277c6;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 2px 0px;
  transition: all 0.2s ease;
}

.page_manualLink__rzYDx:hover .page_manualLinkContent__tapAs {
  border-color: #ccc;
  background-color: #fafafa;
}

.page_plusIcon__jUXrQ {
  font-size: 1.5rem;
  font-weight: 300;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .page_container__yz5RI {
    justify-content: flex-start;
    width: 100%;
    margin: 1rem;
  }
}

.styles_container__XL4m9 {
  flex: 1 1;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.styles_rightPanel__hq0qn {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  max-width: 26.75rem;
}

.styles_title__4JL60 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black-1000);
  margin-top: 1rem;

  line-height: 2rem;
}

.styles_subtitle__Lakpb {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey-400);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.styles_questionConatiner__2Lk_J {
  display: flex;
  flex-direction: column;
  max-width: 35rem;
  width: 100%;
  margin: auto;
}

.styles_footer__tX1zQ {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.cgu_cgu__oDT_J {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}

.cgu_cgu-checkbox__8WPA8 {
  align-self: flex-start;
}

.cgu_cgu__oDT_J .cgu_cgu-label__X_Trz {
  display: inline-block;
  text-align: left;
  height: 100%;
  margin-left: 0.5rem;
  padding-top: 0.75rem;
}

:is(.cgu_cgu__oDT_J .cgu_cgu-label__X_Trz) a {
    background-color: transparent;
  }

.checkList_check-list__0dBlx {
  background-color: var(--grey-100);
  padding: 1.25rem 1.5rem;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--grey-200);
  margin-top: 1.5rem;
}

.checkList_check-list-item__2Uo1E {
  display: flex;
  flex-direction: row;
  align-items: center;
  place-content: flex-start;
  align-self: flex-start;
  gap: 0.5rem;
  text-align: left;
}

.form_container__SAuTo {
  display: flex;
  flex-direction: row;
  justify-content: end;
  margin-bottom: 2rem;
}

.form_container__SAuTo .form_field__Ei7W9 {
  max-width: 8rem;
  margin: 0 0.5rem;
}

.form_container__SAuTo .form_textInfo__5_OtP {
  color: var(--grey-500);
}

@media (max-width: 768px) {
  .form_container__SAuTo {
    flex-direction: column;
    text-align: left;
    background-color: var(--grey-100);
    border: 1px solid var(--grey-200);
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
  }

  .form_container__SAuTo input {
    padding: 0;
    margin: 0;
  }

  .form_container__SAuTo strong:empty {
    min-height: 0.5rem;
  }
}

.page_container__I20MH {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  text-align: center;
  max-width: 37.5rem;
  margin: auto;
}

.page_title__W2_fi {
  text-align: left;
  margin-bottom: 2rem;
}

.page_price__pFmnH {
  font-size: 0.875rem;
  text-align: end;
  font-weight: 500;
}

.page_price-monthly__s8B37 {
  font-size: 0.75rem;
  text-align: end;
}

.page_price-line__KX1jj {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.page_price-colored__k5o65 {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  margin-right: 0.5rem;
}

.page_price-colored-background__IVlze {
  position: absolute;
}

.page_price-colored-value__U8_6r {
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.page_back-link__I0brE {
  margin-top: 0.5rem;
}

.form_form__9OsWH {
  padding: 0 1rem;
}

.form_backLinkContainer__uvaVu {
  align-self: center;
}

.form_cta__EjXdd {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.page_container__TgxRr {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.page_inner__xAKQA {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 32rem;
  gap: 1rem;
}

.page_title__JqIUE {
  box-sizing: border-box;
  display: block;
  padding: 0 1rem;
  width: 100%;
}

.form_container__6fvqi {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 100%;
  padding: 0.5rem;
  gap: 1.5rem;
  box-sizing: border-box;
}

.form_container__6fvqi p {
  text-align: center;
}

.form_description__mUqzm {
  width: 30rem;
  max-width: 100%;
  text-align: center;
}

.form_container__6fvqi .form_anotherCodeButton__9Y0cG {
  border: none;
  display: inline;
  cursor: pointer;
  background-color: transparent;
}

.page_container__zFC8x {
  display: flex;
  flex: 1 1;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100vw;
}

.page_illustration__qZytS {
  height: 8rem;
  margin-bottom: 1.5rem;
}

.page_title__xewIR {
  text-align: center;
}

.desktopView_container__9hsj_ {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
}

.desktopView_titleContainer__g1Vii {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  justify-content: flex-start;
}

.desktopView_card__9AzvD {
  border: 2px solid var(--grey-300);
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}
.desktopView_list__7vZmV {
  list-style: disc;
  list-style-position: inside;
  text-align: start;
  margin-bottom: 1rem;
  line-height: 1.5rem;
}

.desktopView_listItem__c7qzV {
  margin-bottom: 0.5rem;
}

.desktopView_desktopCard__8yGia {
  min-width: 30rem;
  align-items: flex-start;
}

.desktopView_mobileCard__knrXP {
  min-width: 30rem;
  align-items: flex-start;
}

.desktopView_mobileIcon__zJdNC {
  width: auto;
  height: 3.5rem;
  flex-shrink: 0;
}

.desktopView_desktopIcon__iCUEx {
  width: auto;
  height: 3.5rem;
  flex-shrink: 0;
}

.desktopView_mobileContent__NtYt7 {
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.desktopView_qrCodeContainer__Qz6Na {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: end;
}

.desktopView_qrCode__ubP6g {
  width: 120px;
  height: auto;
}

.mobileView_container__0AXnM {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.mobileView_title__6Es77 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 2.5rem;
}
.mobileView_desktopIcon__D52VV {
  width: auto;
  height: 3.5rem;
  object-fit: contain;
}

.mobileView_mobileIcon__D7myg {
  width: auto;
  height: 3.5rem;
  object-fit: contain;
}

.mobileView_titleContainer__k1SFI {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.mobileView_card__D9XJD {
  border: 2px solid var(--grey-300);
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}

.mobileView_list__yhF_1 {
  list-style: disc;
  text-align: start;
  margin-bottom: 1rem;
  line-height: 1.5rem;
}

.mobileView_listItem__X2XqL {
  margin-left: 0.7rem;
}

.mobileView_dialogTitle__sjdrU {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobileView_icon__b1nK0 {
  width: 1.5rem;
  height: 1.5rem;
}
.mobileView_desktopCard__3qR_0 {
  align-items: flex-start;
}

.mobileView_mobileCard__Wxf47 {
  align-items: flex-start;
}

.mobileView_qrCodeContainer__buKXx {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mobileView_qrCode__AZLqB {
  max-width: 25%;
  height: auto;
  display: block;
}

.styles_main__Ziuq4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1;
  height: 100%;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
}

.styles_infoContainer__JM4xZ {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.styles_infoContainer__JM4xZ .styles_title__MsyWl {
    text-align: center;
    line-height: 2.5rem;
    font-size: 22px;
    font-weight: 800;
    word-wrap: break-word;
    -webkit-hyphens: auto;
            hyphens: auto;
  }

.styles_infoContainer__JM4xZ .styles_subtitle__FrLMm {
    font-size: 1.1rem;
    text-align: center;
    color: var(--grey-500);
    line-height: 1.4;
    margin-bottom: 1rem;
  }

.styles_clientWayContainer__7WkeF {
  margin: 1rem auto;
  text-align: center;
  width: 100%;
  max-width: 25rem;
}

.styles_clientWayContainer__7WkeF .styles_clientWayDesktop__f5xOe {
    display: block;
  }

.styles_clientWayContainer__7WkeF .styles_clientWayMobile__KYE_L {
    display: none;
  }

@media (max-width: 768px) {
  .styles_main__Ziuq4 {
    padding: 1rem;
  }

  .styles_infoContainer__JM4xZ {
    max-width: 90%;
  }

    .styles_infoContainer__JM4xZ .styles_imageDescription__JZRxh {
      height: 3rem;
    }

    .styles_infoContainer__JM4xZ .styles_title__MsyWl {
      font-size: 1.8rem;
      line-height: 2.2rem;
    }

    .styles_infoContainer__JM4xZ .styles_subtitle__FrLMm {
      font-size: 1rem;
    }
    .styles_clientWayContainer__7WkeF .styles_clientWayDesktop__f5xOe {
      display: none;
    }

    .styles_clientWayContainer__7WkeF .styles_clientWayMobile__KYE_L {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
}

@media (max-width: 480px) {
  .styles_main__Ziuq4 {
    padding: 0.75rem;
    justify-content: flex-start;
    padding-top: 2rem;
  }

  .styles_infoContainer__JM4xZ {
    max-width: 95%;
  }

    .styles_infoContainer__JM4xZ .styles_imageDescription__JZRxh {
      height: 4rem;
    }

    .styles_infoContainer__JM4xZ .styles_title__MsyWl {
      font-size: 1.6rem;
      line-height: 2rem;
      margin-bottom: 0.6rem;
    }

    .styles_infoContainer__JM4xZ .styles_subtitle__FrLMm {
      font-size: 0.95rem;
      line-height: 1.3;
    }

  .styles_clientWayContainer__7WkeF {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
}

.styles_container__6QrYe {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 100vh;
}

.styles_leftPanel__TheBJ {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1.875rem 1.5rem;
  width: 100%;
  max-width: calc(100% - 23.75rem);
}

.styles_rightPanel__mP3Zl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 23.75rem;
  padding: 2rem;
  background: #f8f9fa;
}

.styles_question___z2Eh {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
}

.styles_question___z2Eh h1 {
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 37.5rem;
}

.styles_divider__Ml5eK {
  width: 100%;
  max-width: 37.5rem;
  height: 0.0625rem;
  background: #e1e5e9;
  margin-bottom: 1.5rem;
}

.styles_learnMore__1FMiq {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  text-decoration: none;
}

.styles_learnMore__1FMiq img {
  width: 1rem;
  height: 1rem;
}

.styles_choices__MQCPC {
  display: grid;
  grid-template-columns: repeat(2, 9.375rem);
  gap: 1rem;
  width: fit-content;
  margin: 0 auto 2rem auto;
  justify-content: center;
}

.styles_choice__zCaBI {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem;
  border: 0.125rem solid #e1e5e9;
  border-radius: 0.75rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 9.375rem;
  height: 9.375rem;
}

.styles_choice__zCaBI:hover {
  border-color: #667eea;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(102, 126, 234, 0.15);
}

.styles_choiceContent__763fI {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1;
}

.styles_choiceContent__763fI span {
  color: #1a1a1a;
}

.styles_chevron__ssapO {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.styles_backLink__207qt {
  align-self: center;
}

.styles_pubLogo__hXnZ1 {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.5rem;
}

.styles_pubTitle__RNDbF {
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 700;
}

.styles_pubSubtitle__egcIM {
  color: #666;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 48rem) {
  .styles_container__6QrYe {
    flex-direction: column;
  }

  .styles_leftPanel__TheBJ {
    max-width: 100%;
  }

  .styles_rightPanel__mP3Zl {
    display: none;
  }

  .styles_choices__MQCPC {
    grid-template-columns: repeat(2, 8.75rem);
    gap: 0.625rem;
  }

  .styles_choice__zCaBI {
    width: 8.75rem;
    height: 8.75rem;
    padding: 0.625rem;
  }
}

.dropdown_primaryButtonFullWith__DLYnI {
  min-width: 8.125rem;
  width: 100%;
  height: 2rem;
  border-radius: 0.5rem;
  border: 0.25rem solid transparent;
  box-shadow: unset;
  box-sizing: border-box;
  display: inline-flex;
  -webkit-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.25rem 0.75rem;
  background: rgb(29, 30, 33);
  color: rgb(255, 255, 255);
  text-decoration: none;
  margin-top: 1rem;
}

.dropdown_primaryButtonFullWithDisabled__jLvqj {
  min-width: 8.125rem;
  width: 100%;
  height: 2rem;
  border-radius: 0.5rem;
  border: 0.25rem solid transparent;
  outline: unset;
  box-shadow: unset;
  box-sizing: border-box;
  display: inline-flex;
  -webkit-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.25rem 0.75rem;
  background: var(--grey-400);
  color: rgb(255, 255, 255);
  text-decoration: none;
  margin-top: 1rem;
}

.dropdown_textAlreadyOnThelist__i6srq {
  margin-top: 1rem;
}

.styles_container__9qoHJ {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.styles_leftPanel__kFCuz {
  width: 50%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

@media (max-width: 768px) {

.styles_leftPanel__kFCuz {
    width: 100%;
}
  }

.styles_rightPanel__sQqHq {
  width: 50%;
  height: 100vh;
  background-image: url("/backgrounds/globe.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {

.styles_rightPanel__sQqHq {
    display: none;
}
  }

.styles_title_unlistedCountry__ENsjY {
  margin-bottom: 1rem;
  align-self: flex-start;
}

.styles_waitingList__imU_8 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black-600);
  margin-bottom: 1rem;
}

.styles_question__yHs9F {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  justify-content: center;
  flex-grow: 1;
}

.styles_linkBackContainer__3aIYP {
  align-self: center;
  margin-top: 1rem;
}

.styles_container__cuniD {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.styles_leftPanel__3Kgw3 {
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.styles_rightPanel__DNlFv {
  width: 50%;
  height: 100vh;
  background-image: url("/backgrounds/globe.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {

.styles_rightPanel__DNlFv {
    display: none;
}
  }

.styles_imgBox__4TXHL {
  height: 8rem;
  width: 8rem;
  object-fit: contain;
}

.styles_title__54UxT {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black-600);
  padding: 1rem 1rem;
}

.styles_infoContainer__ZGI_k {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  max-width: 480px;
}

@media (max-width: 1024px) {
  .styles_container__cuniD {
    flex-direction: column;
  }

  .styles_leftPanel__3Kgw3 {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
  }
  .styles_rightPanel__DNlFv {
    width: 100%;
  }
}

.formEmail_formContainer__ovgC6 {
  width: 100%;
  box-sizing: border-box;
}

.styles_container__vV3os {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.styles_leftPanel__PBtDd {
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.styles_rightPanel__DLMK1 {
  width: 50%;
  height: 100vh;
  background-image: url("/backgrounds/globe.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {

.styles_rightPanel__DLMK1 {
    display: none;
}
  }

.styles_formContainer__u8OhH {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.styles_linkBackContainer__DUdtR {
  align-self: center;
  margin-top: 1rem;
}

.styles_imgBox__QFIcE {
  height: 8rem;
  width: 8rem;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .styles_container__vV3os {
    flex-direction: column;
  }

  .styles_leftPanel__PBtDd {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
  }
  .styles_rightPanel__DLMK1 {
    width: 100%;
  }
}

.styles_container__0Mn20 {
  height: 100vh;
  width: 100%;
  display: flex;
}

.styles_leftPanel__WLEeP {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.styles_question__hN3Pt {
  max-width: 30rem;
  margin-top: 2.5rem;

  display: flex;
  flex-direction: column;
}

.styles_question__hN3Pt .styles_description__xleyz {
    color: var(--black-500);
  }

.styles_question__hN3Pt .styles_choices__pQE8a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

.styles_question__hN3Pt .styles_choice___dfsr {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    box-sizing: border-box;
    width: 100%;
    height: 4rem;
    gap: 0.5rem;
    padding: 1.25rem 1rem;

    border: 1px solid var(--grey-200);
    border-radius: 0.5rem;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.04) 0 1px 2px 0;
  }

:is(.styles_question__hN3Pt .styles_choice___dfsr):hover {
      border-color: var(--grey-600);
    }

:is(.styles_question__hN3Pt .styles_choice___dfsr) img {
      height: 1.5rem;
      aspect-ratio: auto 28 / 20;
    }

:is(.styles_question__hN3Pt .styles_choice___dfsr) .styles_chevron__mpPj4 {
      margin-left: auto;
    }

.styles_question__hN3Pt .styles_notListed__25lzr {
    margin-top: 1rem;
    align-self: center;
  }

.styles_rightPanel__Nownq {
  width: 50%;
  height: fit-content;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-color: #a97eff;
  background-image: radial-gradient(#ffffff87 0%, #a97eff 5%, #08052b 65%, #a97eff 250%);

  background-repeat: no-repeat;
  background-size: 200% 220%;
  background-position: 0 0;
  background-origin: padding-box;
}

@media (max-width: 768px) {

.styles_rightPanel__Nownq {
    display: none;
}
  }

.styles_pubLogo__9OWcW {
  display: block;
  width: 15rem;
  max-width: 100%;
  height: auto;
  margin-bottom: 3rem;
}

.styles_pubTitle__D7OWN {
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 400;
  background: linear-gradient(131.14deg, var(--white) 26.69%, rgba(255, 255, 255, 0) 143.65%) text;
  -webkit-text-fill-color: transparent;
  z-index: 10;
  text-align: center;
  width: 25rem;
  max-width: 100%;
  margin-bottom: 1rem;
}

.styles_pubArgs__bGxIy {
  font-size: 1.25rem;
  color: var(--grey-200);
}

.styles_pubArgs__bGxIy li {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 4rem;
  }

.styles_pubArgs__bGxIy img {
    width: 2.5rem;
    height: auto;
  }

@media (max-width: 1024px) {
  .styles_container__0Mn20 {
    flex-direction: column;
    height: fit-content;
  }

  .styles_leftPanel__WLEeP {
    width: 100%;
    height: 100dvh;
    box-sizing: border-box;
    padding: 1rem;
  }
  .styles_question__hN3Pt {
    align-self: center;
    margin: auto;
    width: 100%;
    max-width: 30rem;
  }
    .styles_header__tjezh .styles_logo____66h {
      margin-left: 0;
    }

    .styles_header__tjezh .styles_actions__Eeff_ {
      gap: 0.5rem;

      margin-right: 0;
    }

  .styles_rightPanel__Nownq {
    width: 100%;
    margin-top: 1rem;
    box-sizing: border-box;
    padding: 1rem;
  }
}

.styles_container__FryQj {
  height: 100vh;
  width: 100%;

  display: flex;
}

.styles_leftPanel__iLweM {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.styles_question__jpMHs {
  max-width: 30rem;
  margin-top: 2.5rem;

  display: flex;
  flex-direction: column;
}

.styles_question__jpMHs .styles_description__9lvue {
    color: var(--black-500);
  }

.styles_question__jpMHs .styles_choices__brJmP {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

.styles_question__jpMHs .styles_choice___PaEA {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    box-sizing: border-box;
    width: 100%;
    height: 6rem;
    gap: 0.5rem;
    padding: 1.25rem 1rem;

    border: 1px solid var(--grey-200);
    border-radius: 0.5rem;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 2px 0px;
    text-decoration: none;
  }

:is(.styles_question__jpMHs .styles_choice___PaEA):hover {
      border-color: var(--grey-600);
    }

:is(.styles_question__jpMHs .styles_choice___PaEA) img {
      height: 2.5rem;
      width: 2.5rem;
    }

:is(.styles_question__jpMHs .styles_choice___PaEA) .styles_chevron__4oxRm {
      margin-left: auto;
    }

.styles_question__jpMHs .styles_notListed__Gvuf3 {
    margin-top: 1rem;
    align-self: center;
  }

.styles_rightPanel__YBwKp {
  width: 50%;
  height: fit-content;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-color: #a97eff;
  background-image: radial-gradient(#ffffff87 0%, #a97eff 5%, #08052b 65%, #a97eff 250%);

  background-repeat: no-repeat;
  background-size: 200% 220%;
  background-position: 0 0;
  background-origin: padding-box;
}

@media (max-width: 768px) {

.styles_rightPanel__YBwKp {
    display: none;
}
  }

.styles_pubTitle__eUXuA {
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 400;
  background: linear-gradient(131.14deg, var(--white) 26.69%, rgba(255, 255, 255, 0) 143.65%) text;
  -webkit-text-fill-color: transparent;
  z-index: 10;
  text-align: center;
  margin-bottom: 1rem;
  max-width: 35rem;
}

.styles_pubTitle__eUXuA strong {
    font-size: 8rem;
    line-height: 12rem;
  }

.styles_pubSubtitle__Bar3J {
  color: var(--grey-200);
  max-width: 26rem;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 4rem;
}

@media (max-width: 1024px) {
  .styles_container__FryQj {
    flex-direction: column;
    height: fit-content;
  }

  .styles_leftPanel__iLweM {
    width: 100%;
    height: 100dvh;
    box-sizing: border-box;
    padding: 1rem;
  }

  .styles_rightPanel__YBwKp {
    width: 100%;
    margin-top: 1rem;
    box-sizing: border-box;
    padding: 2rem;
    height: auto;
    height: 100vh;
  }

  .styles_question__jpMHs {
    align-self: center;
    margin: auto;
    width: 100%;
    max-width: 30rem;
  }
    .styles_question__jpMHs .styles_questionTitle__19DKB {
      text-align: center;
    }
    .styles_question__jpMHs .styles_choice___PaEA {
      height: auto;
    }
}

