/* 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;
  }
}

.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;
    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 .header_logo__tCEKq {
      margin-left: 0;
    }

    .header_header__8DOzg .header_actions__NvqNo {
      gap: 0.5rem;

      margin-right: 0;
    }
}

.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;
  }
}

.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;
}

.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;
  }
}

.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%;
  }
}

.backbtn_backButton__Uktif {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 3px solid var(--grey-300);
  width: max-content;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.backbtn_backIcon__wwTaV {
  margin-right: 2rem;
  width: 2rem;
}

.backbtn_backButton__8JG5m {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 3px solid var(--grey-300);
  width: max-content;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.backbtn_backIcon__X9Sdi {
  margin-right: 2rem;
  width: 2rem;
}

.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__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;
  }
}

.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;
    }
}

