.auth-form-wrap {
  max-width: 580px;
}

.reg-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  padding: 0 8px;
}

.reg-stepper__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  cursor: default;
}

.reg-stepper__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  background: #E2EDE9;
  color: #9BABB8;
  transition: 0.2s;
  border: 2px solid transparent;
}

.reg-stepper__label {
  font-size: 11px;
  font-weight: 600;
  color: #9BABB8;
  white-space: nowrap;
  transition: 0.2s;
}

.reg-stepper__line {
  flex: 1;
  height: 2px;
  background: #E2EDE9;
  min-width: 24px;
  max-width: 60px;
  margin-bottom: 18px;
  transition: background 0.2s;
}

.reg-stepper__item.is-active .reg-stepper__num {
  background: var(--theme-primary, #2E8B6F);
  color: #fff;
  border-color: var(--theme-primary, #2E8B6F);
}
.reg-stepper__item.is-active .reg-stepper__label {
  color: var(--theme-primary, #2E8B6F);
  font-weight: 700;
}

.reg-stepper__item.is-done .reg-stepper__num {
  background: var(--theme-primary-bg, #E8F5F0);
  color: var(--theme-primary, #2E8B6F);
  border-color: var(--theme-primary, #2E8B6F);
}
.reg-stepper__item.is-done .reg-stepper__label {
  color: var(--theme-primary, #2E8B6F);
}

.reg-stepper__line.is-done {
  background: var(--theme-primary, #2E8B6F);
}

.reg-step {
  display: none;
}
.reg-step.is-active {
  display: block;
}

.reg-step__title {
  font-size: 18px;
  font-weight: 800;
  color: #2C3E50;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--theme-primary-bg, #E8F5F0);
  display: flex;
  align-items: center;
  gap: 8px;
}
.reg-step__title i {
  color: var(--theme-primary, #2E8B6F);
  font-size: 20px;
}

.reg-step__desc {
  font-size: 13px;
  color: #9BABB8;
  margin: -12px 0 16px;
}

.reg-step__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #E2EDE9;
}
.reg-step__nav--submit {
  justify-content: space-between;
}
.reg-step__nav .btn-auth {
  flex: 1;
  max-width: 260px;
}
.reg-step__nav .btn-auth--back {
  background: #F0F4F3;
  color: #6B7C8F;
  border: 1.5px solid #D1DEE0;
}
.reg-step__nav .btn-auth--back:hover {
  background: #E2EDE9;
  color: #2C3E50;
}

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-group--col {
  flex-direction: column;
}

.radio-card {
  cursor: pointer;
  flex: 1;
  min-width: 120px;
}
.radio-card input {
  display: none;
}
.radio-card .radio-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 12px;
  border: 2px solid #D1DEE0;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  transition: 0.15s;
  height: 100%;
}
.radio-card input:checked + .radio-card__body {
  border-color: var(--theme-primary, #2E8B6F);
  background: var(--theme-primary-bg, #E8F5F0);
}
.radio-card__icon {
  font-size: 22px;
}
.radio-card__label {
  font-size: 13px;
  font-weight: 700;
}
.radio-card__sub {
  font-size: 11px;
  color: #9BABB8;
}

.check-grid--area {
  flex-direction: column;
}
.check-grid--area .check-chip--wide .check-chip__body {
  width: 100%;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px 16px;
}

.file-upload {
  position: relative;
}
.file-upload__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.file-upload__area {
  border: 2px dashed #D1DEE0;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  transition: 0.15s;
  background: #FAFCFB;
}
.file-upload__area:hover {
  border-color: var(--theme-primary, #2E8B6F);
  background: var(--theme-primary-bg, #E8F5F0);
}
.file-upload__icon {
  font-size: 32px;
  color: #9BABB8;
  margin-bottom: 8px;
}
.file-upload__text {
  font-size: 14px;
  font-weight: 600;
  color: #4A5568;
  margin: 0;
}
.file-upload__hint {
  font-size: 12px;
  color: #9BABB8;
  margin: 4px 0 0;
}
.file-upload__preview {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.file-upload__preview img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  background: #F4F7F6;
}
.file-upload__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
}

.reg-confirm {
  background: #F8FBFA;
  border: 1px solid #E2EDE9;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
}
.reg-confirm__loading {
  font-size: 13px;
  color: #9BABB8;
  text-align: center;
  margin: 0;
}

.reg-confirm__group {
  margin-bottom: 16px;
}
.reg-confirm__group:last-child {
  margin-bottom: 0;
}

.reg-confirm__label {
  font-size: 11px;
  font-weight: 700;
  color: #9BABB8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 4px;
}

.reg-confirm__value {
  font-size: 14px;
  color: #2C3E50;
  margin: 0;
}

.agree-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.agree-box {
  border: 1px solid #E2EDE9;
  border-radius: 10px;
  overflow: hidden;
}
.agree-box__title {
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  background: #FAFCFB;
  border-bottom: 1px solid #E2EDE9;
  margin: 0;
  color: #2C3E50;
}
.agree-box__body {
  padding: 14px 16px;
  max-height: 140px;
  overflow-y: auto;
  font-size: 12px;
  color: #6B7C8F;
  line-height: 1.7;
}
.agree-box__body p {
  margin: 0 0 8px;
}
.agree-box__body p:last-child {
  margin: 0;
}
.agree-box__body::-webkit-scrollbar {
  width: 4px;
}
.agree-box__body::-webkit-scrollbar-track {
  background: #F4F7F6;
}
.agree-box__body::-webkit-scrollbar-thumb {
  background: #D1DEE0;
  border-radius: 2px;
}

.form-check--large {
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: #F8FBFA;
  border: 1px solid #E2EDE9;
  border-radius: 8px;
}
.form-check--large input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
}
.form-check--large .form-check__label {
  font-size: 13px;
  line-height: 1.6;
}

.form-label__hint {
  font-size: 11px;
  font-weight: 400;
  color: #9BABB8;
  margin-left: 6px;
}

.confirm-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.confirm-section {
  border: 1px solid #E2EDE9;
  border-radius: 10px;
  overflow: hidden;
}
.confirm-section__title {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  background: #FAFCFB;
  border-bottom: 1px solid #E2EDE9;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.confirm-section__title i {
  color: var(--theme-primary, #2E8B6F);
}

.confirm-dl {
  margin: 0;
  padding: 4px 0;
}
.confirm-dl__row {
  display: flex;
  gap: 12px;
  padding: 9px 16px;
  border-bottom: 1px solid #F0F4F3;
  font-size: 13px;
}
.confirm-dl__row:last-child {
  border-bottom: none;
}
.confirm-dl__row dt {
  min-width: 140px;
  color: #9BABB8;
  font-weight: 600;
  flex-shrink: 0;
}
.confirm-dl__row dd {
  margin: 0;
  color: #2C3E50;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.confirm-actions .btn-auth {
  flex: 1;
}

.complete-icon {
  font-size: 56px;
  margin-bottom: 8px;
}

.complete-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  text-align: left;
}

.complete-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--theme-primary-bg, #E8F5F0);
  border-radius: 10px;
}
.complete-step__num {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--theme-primary, #2E8B6F);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.complete-step__text {
  font-size: 13px;
  color: #2C3E50;
  font-weight: 600;
}

@media (max-width: 560px) {
  .reg-stepper__label {
    display: none;
  }
  .reg-stepper__line {
    min-width: 16px;
  }
  .radio-group {
    flex-direction: column;
  }
  .radio-card .radio-card__body {
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }
  .reg-step__nav .btn-auth {
    font-size: 13px;
    padding: 11px 12px;
  }
}/*# sourceMappingURL=register.css.map */