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

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

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

.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;
  padding-left: 2rem;
  padding-right: 2rem;
}

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

