/* [project]/components/OtpModal.module.scss.module.css [app-client] (css) */
@keyframes OtpModal-module-scss-module__VpmlfG__shimmer {
  from {
    background-position: 200%;
  }

  to {
    background-position: -200%;
  }
}

.OtpModal-module-scss-module__VpmlfG__overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 100;
  background: #0000008c;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  animation: .2s OtpModal-module-scss-module__VpmlfG__fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes OtpModal-module-scss-module__VpmlfG__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.OtpModal-module-scss-module__VpmlfG__modal {
  text-align: center;
  background: #fff;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 400px;
  padding: 2.5rem 2rem;
  animation: .25s OtpModal-module-scss-module__VpmlfG__slideUp;
  position: relative;
  box-shadow: 0 25px 50px -12px #00000040;
}

@keyframes OtpModal-module-scss-module__VpmlfG__slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.OtpModal-module-scss-module__VpmlfG__closeBtn {
  color: #9ca3af;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: .5rem;
  padding: 4px 8px;
  font-size: 24px;
  line-height: 1;
  transition: background .1s;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.OtpModal-module-scss-module__VpmlfG__closeBtn:hover {
  color: #111827;
  background: #f3f4f6;
}

.OtpModal-module-scss-module__VpmlfG__icon {
  margin-bottom: 1rem;
  font-size: 48px;
}

.OtpModal-module-scss-module__VpmlfG__title {
  color: #111827;
  margin: 0 0 .5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.OtpModal-module-scss-module__VpmlfG__subtitle {
  color: #4b5563;
  margin: 0 0 1.5rem;
  font-size: .875rem;
  line-height: 1.75;
}

.OtpModal-module-scss-module__VpmlfG__error {
  color: #b91c1c;
  background: #fee2e2;
  border: 1px solid #ef4444;
  border-radius: .5rem;
  margin-bottom: 1rem;
  padding: .5rem .75rem;
  font-size: .875rem;
}

.OtpModal-module-scss-module__VpmlfG__success {
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #10b981;
  border-radius: .5rem;
  margin-bottom: 1rem;
  padding: .5rem .75rem;
  font-size: .875rem;
}

.OtpModal-module-scss-module__VpmlfG__digits {
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.OtpModal-module-scss-module__VpmlfG__digit {
  text-align: center;
  color: #111827;
  caret-color: #14b8a6;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: .75rem;
  outline: none;
  width: 48px;
  height: 56px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: border-color .1s, box-shadow .1s;
}

.OtpModal-module-scss-module__VpmlfG__digit:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px #1a73e833;
}

.OtpModal-module-scss-module__VpmlfG__digitError {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px #ef444426 !important;
}

.OtpModal-module-scss-module__VpmlfG__verifyBtn {
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-family: Inter, Geist, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.OtpModal-module-scss-module__VpmlfG__verifyBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

.OtpModal-module-scss-module__VpmlfG__verifyBtn {
  color: #fff;
  background: #14b8a6;
  border-radius: .75rem;
  gap: .5rem;
  width: 100%;
  margin-bottom: 1rem;
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.OtpModal-module-scss-module__VpmlfG__verifyBtn:hover:not(:disabled) {
  background: #0f766e;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
}

.OtpModal-module-scss-module__VpmlfG__verifyBtn:active:not(:disabled) {
  transform: translateY(1px);
}

.OtpModal-module-scss-module__VpmlfG__spinner {
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 9999px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: none;
}

.OtpModal-module-scss-module__VpmlfG__spinner[data-visible="true"] {
  animation: .8s linear infinite OtpModal-module-scss-module__VpmlfG__spin;
  display: inline-block;
}

@keyframes OtpModal-module-scss-module__VpmlfG__spin {
  to {
    transform: rotate(360deg);
  }
}

.OtpModal-module-scss-module__VpmlfG__resendPrompt {
  color: #4b5563;
  margin: 0;
  font-size: .875rem;
}

.OtpModal-module-scss-module__VpmlfG__resendLink {
  color: #14b8a6;
  cursor: pointer;
  font-weight: 600;
  font-size: inherit;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}

.OtpModal-module-scss-module__VpmlfG__resendLink:hover {
  text-decoration: underline;
}

.OtpModal-module-scss-module__VpmlfG__resendLink:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* [project]/components/PhonePrefixSelect.module.scss.module.css [app-client] (css) */
@keyframes PhonePrefixSelect-module-scss-module__0yM_Bq__shimmer {
  from {
    background-position: 200%;
  }

  to {
    background-position: -200%;
  }
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__wrapper {
  flex-shrink: 0;
  width: 96px;
  position: relative;
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__trigger {
  cursor: pointer;
  color: #111827;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  align-items: center;
  gap: .25rem;
  width: 100%;
  height: 100%;
  padding: .5rem;
  font-family: Inter, Geist, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  transition: border-color .1s, box-shadow .1s;
  display: flex;
  overflow: hidden;
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__trigger:focus {
  border-color: #14b8a6;
  outline: none;
  box-shadow: 0 0 0 3px #1a73e826;
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__trigger[aria-expanded="true"] {
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px #1a73e826;
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__flag {
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  width: 20px;
  height: 15px;
  display: block;
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__chevron {
  color: #9ca3af;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform .1s;
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__trigger[aria-expanded="true"] .PhonePrefixSelect-module-scss-module__0yM_Bq__chevron {
  transform: rotate(180deg);
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__dropdown {
  z-index: 100;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .75rem;
  min-width: 160px;
  animation: .12s PhonePrefixSelect-module-scss-module__0yM_Bq__fadeDown;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

@keyframes PhonePrefixSelect-module-scss-module__0yM_Bq__fadeDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__option {
  cursor: pointer;
  color: #111827;
  text-align: left;
  background: none;
  border: none;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: .5rem .75rem;
  font-family: Inter, Geist, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: .875rem;
  transition: background .1s;
  display: flex;
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__option:hover, .PhonePrefixSelect-module-scss-module__0yM_Bq__option[data-active="true"] {
  background: #f9fafb;
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__option[data-selected="true"] {
  color: #0f766e;
  background: #14b8a60f;
  font-weight: 600;
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__optionLabel {
  color: inherit;
  font-weight: 500;
}

.PhonePrefixSelect-module-scss-module__0yM_Bq__optionCountry {
  color: #9ca3af;
  margin-left: auto;
  font-size: .75rem;
}

/* [project]/app/register/register.module.scss.module.css [app-client] (css) */
@keyframes register-module-scss-module__WLe_Ma__shimmer {
  from {
    background-position: 200%;
  }

  to {
    background-position: -200%;
  }
}

.register-module-scss-module__WLe_Ma__page {
  background: #f9fafb;
  min-height: 100vh;
  padding: 3rem 1rem;
}

.register-module-scss-module__WLe_Ma__container {
  max-width: 720px;
  margin: 0 auto;
}

.register-module-scss-module__WLe_Ma__header {
  text-align: center;
  margin-bottom: 2rem;
}

.register-module-scss-module__WLe_Ma__logo {
  width: auto;
  height: 40px;
  margin: 0 auto 1.25rem;
  display: block;
}

.register-module-scss-module__WLe_Ma__title {
  color: #111827;
  margin: 0 0 .5rem;
  font-size: 1.875rem;
  font-weight: 700;
}

.register-module-scss-module__WLe_Ma__subtitle {
  color: #4b5563;
  margin: 0;
  font-size: .875rem;
}

.register-module-scss-module__WLe_Ma__linkTeal {
  color: #14b8a6;
  font-weight: 600;
  text-decoration: none;
}

.register-module-scss-module__WLe_Ma__linkTeal:hover {
  text-decoration: underline;
}

.register-module-scss-module__WLe_Ma__linkAmber {
  color: #f59e0b;
  font-weight: 600;
  text-decoration: none;
}

.register-module-scss-module__WLe_Ma__linkAmber:hover {
  text-decoration: underline;
}

.register-module-scss-module__WLe_Ma__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
}

.register-module-scss-module__WLe_Ma__sectionBadge {
  background: #14b8a60f;
  border: 1px solid #14b8a633;
  border-radius: .75rem;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  display: flex;
}

.register-module-scss-module__WLe_Ma__sectionNum {
  color: #fff;
  background: #14b8a6;
  border-radius: 9999px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: .875rem;
  font-weight: 700;
  display: flex;
}

.register-module-scss-module__WLe_Ma__sectionLabel {
  color: #111827;
  font-size: .875rem;
  font-weight: 700;
}

.register-module-scss-module__WLe_Ma__sectionSub {
  color: #4b5563;
  margin-top: 2px;
  font-size: .75rem;
}

.register-module-scss-module__WLe_Ma__sectionHeader {
  color: #111827;
  border-top: 1px solid #e5e7eb;
  margin-top: .5rem;
  padding-top: 1.5rem;
  font-size: .875rem;
  font-weight: 700;
}

.register-module-scss-module__WLe_Ma__errorBanner {
  color: #b91c1c;
  background: #fee2e2;
  border: 1px solid #ef4444;
  border-radius: .5rem;
  margin-bottom: 1rem;
  padding: .75rem 1rem;
  font-size: .875rem;
}

.register-module-scss-module__WLe_Ma__fieldError {
  color: #b91c1c;
  margin-top: .25rem;
  font-size: .75rem;
  font-weight: 600;
}

.register-module-scss-module__WLe_Ma__form {
  flex-direction: column;
  gap: 1.25rem;
  display: flex;
}

.register-module-scss-module__WLe_Ma__grid2 {
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  display: grid;
}

@media (max-width: 767px) {
  .register-module-scss-module__WLe_Ma__grid2 {
    grid-template-columns: 1fr;
  }
}

.register-module-scss-module__WLe_Ma__field {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.register-module-scss-module__WLe_Ma__label {
  color: #111827;
  font-size: .875rem;
  font-weight: 600;
}

.register-module-scss-module__WLe_Ma__input {
  color: #111827;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  outline: none;
  width: 100%;
  padding: .5rem .75rem;
  font-family: Inter, Geist, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: .875rem;
  transition: border-color .1s, box-shadow .1s;
  display: block;
}

.register-module-scss-module__WLe_Ma__input::placeholder {
  color: #9ca3af;
}

.register-module-scss-module__WLe_Ma__input:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px #1a73e833;
}

.register-module-scss-module__WLe_Ma__input:disabled {
  cursor: not-allowed;
  background: #f3f4f6;
}

.register-module-scss-module__WLe_Ma__input[aria-invalid="true"] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px #ef444426;
}

.register-module-scss-module__WLe_Ma__input {
  border-radius: .5rem;
  padding: .5rem .75rem;
}

.register-module-scss-module__WLe_Ma__mt1 {
  margin-top: .5rem;
}

.register-module-scss-module__WLe_Ma__mt4 {
  margin-top: 1rem;
}

.register-module-scss-module__WLe_Ma__flex1 {
  flex: 1;
}

.register-module-scss-module__WLe_Ma__phoneRow {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.register-module-scss-module__WLe_Ma__phonePrefixSelect {
  color: #111827;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  outline: none;
  flex-shrink: 0;
  width: 100%;
  padding: .5rem .75rem;
  font-family: Inter, Geist, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: .875rem;
  transition: border-color .1s, box-shadow .1s;
  display: block;
}

.register-module-scss-module__WLe_Ma__phonePrefixSelect::placeholder {
  color: #9ca3af;
}

.register-module-scss-module__WLe_Ma__phonePrefixSelect:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px #1a73e833;
}

.register-module-scss-module__WLe_Ma__phonePrefixSelect:disabled {
  cursor: not-allowed;
  background: #f3f4f6;
}

.register-module-scss-module__WLe_Ma__phonePrefixSelect[aria-invalid="true"] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px #ef444426;
}

.register-module-scss-module__WLe_Ma__phonePrefixSelect {
  border-radius: .5rem;
  padding: .5rem .25rem;
  font-size: .75rem;
}

.register-module-scss-module__WLe_Ma__phoneInput {
  flex: 1;
  min-width: 0;
}

.register-module-scss-module__WLe_Ma__termsRow {
  color: #4b5563;
  cursor: pointer;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  line-height: 1.75;
  display: flex;
}

.register-module-scss-module__WLe_Ma__checkbox {
  accent-color: #14b8a6;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.register-module-scss-module__WLe_Ma__submitBtn {
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-family: Inter, Geist, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.register-module-scss-module__WLe_Ma__submitBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

.register-module-scss-module__WLe_Ma__submitBtn {
  color: #fff;
  border-radius: .75rem;
  gap: .5rem;
  width: 100%;
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.register-module-scss-module__WLe_Ma__btnTeal {
  background: #14b8a6;
}

.register-module-scss-module__WLe_Ma__btnTeal:hover:not(:disabled) {
  background: #0f766e;
}

.register-module-scss-module__WLe_Ma__btnAmber {
  background: #f59e0b;
}

.register-module-scss-module__WLe_Ma__btnAmber:hover:not(:disabled) {
  background: #b45309;
}

.register-module-scss-module__WLe_Ma__spinner {
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 9999px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: none;
}

.register-module-scss-module__WLe_Ma__spinner[data-visible="true"] {
  animation: .8s linear infinite register-module-scss-module__WLe_Ma__spin;
  display: inline-block;
}

@keyframes register-module-scss-module__WLe_Ma__spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=_0wz1.qi._.css.map*/