/**
 * 사전등록 (conference/registration.php)
 * kafclift _form.scss 참고
 */


/* 토스 결제위젯 */
#payment-method,
#agreement {
  margin-top: 12px;
}
.reg-pay-widget-hint {
  margin: 0 0 10px;
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .reg-pay-widget-hint {
    font-size: 12px;
    line-height: 1.45;
  }
}

.wrap-content .sub-content.reg-page {
  padding-top: 32px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .wrap-content .sub-content.reg-page {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

/* 사전등록: 행사명(reg-page__conf)과 붙여 보이도록 공통 서브타이틀 하단 패딩만 제거 */
.wrap-content .sub-content.reg-page > .sub-page-subtitle {
  padding-bottom: 0;
}

.reg-page .inner-1520 {
  max-width: 780px;
}

.reg-page__head {
  text-align: center;
  margin-bottom: 40px;
}

.reg-page__conf {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .reg-page__conf {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* ── 섹션 ── */
.reg-section {
  margin-bottom: 48px;
}

.reg-section:last-of-type {
  margin-bottom: 0;
}

/* 섹션 헤더: 타이틀 + 안내 */
.reg-section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #b8b8b8;
  margin-bottom: 20px;
}

.reg-section__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #202020;
}

@media (max-width: 768px) {
  .reg-section__title {
    font-size: 17px;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .reg-section__title {
    font-size: 16px;
  }
}

.reg-section__load {
  font-size: 13px;
  padding: 6px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  color: #202020;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.reg-section__load:hover {
  background: #efefef;
}

/* ── 필드 목록 (field-box 패턴) ── */
.reg-form .field-box {
  margin-bottom: 24px;
}

.reg-form .field-box:last-child {
  margin-bottom: 0;
}

/* 라벨 */
.reg-form .field-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #202020;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .reg-form .field-label {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

.reg-form .field-label .req {
  color: #e62e2e;
}

.reg-form .field-label.require::after {
  content: " *";
  color: #e62e2e;
}

/* 인풋 박스 */
.reg-form .input-box {
  width: 100%;
}

.reg-form .input-box input[type="text"],
.reg-form .input-box input[type="email"],
.reg-form .input-box input[type="tel"],
.reg-form .input-box input[type="password"] {
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 24px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s;
}

@media (max-width: 768px) {
  .reg-form .input-box input[type="text"],
  .reg-form .input-box input[type="email"],
  .reg-form .input-box input[type="tel"],
  .reg-form .input-box input[type="password"] {
    height: 52px;
    /* 16px 미만이면 iOS Safari가 입력 포커스 시 화면 확대 */
    font-size: 16px;
    padding: 0 16px;
  }
}

.reg-form .input-box input::placeholder {
  font-weight: 400;
  color: #bbb;
}

.reg-form .input-box input:focus {
  border-color: #1B1735;
}

/* 셀렉트 */
.reg-form .input-box select {
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 42px 0 24px;
  font-size: 16px;
  font-weight: 400;
  color: #202020;
  font-family: inherit;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fff url("/assets/icons/ico_dropdown.svg") no-repeat right 16px center / 18px;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.3s;
}

@media (max-width: 768px) {
  .reg-form .input-box select {
    height: 52px;
    font-size: 16px;
    padding: 0 36px 0 16px;
    background-position: right 12px center;
  }
}

.reg-form .input-box select:focus {
  border-color: #1B1735;
}

.reg-form .input-box select:invalid {
  color: #bbb;
}

/* 서브 텍스트 */
.reg-form .field-sub-txt {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #8a8a8a;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .reg-form .field-sub-txt {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* ── 2열 flex ── */
.reg-form .flex-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.reg-form .flex-row .input-box {
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px) {
  .reg-form .flex-row {
    flex-direction: column;
    gap: 12px;
  }
}

/* ── 라디오 그룹 ── */
.reg-form .radio-group {
  display: flex;
  gap: 20px 32px;
  padding: 16px 0;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 768px) {
  .reg-form .radio-group {
    gap: 16px;
  }
}

.reg-form .radio-box {
  display: inline-flex;
}

.reg-form .radio-box input[type="radio"] {
  display: none;
}

.reg-form .radio-box input[type="radio"] + .chk-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #8a8a8a;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  padding: 0;
}

@media (max-width: 768px) {
  .reg-form .radio-box input[type="radio"] + .chk-btn {
    font-size: 15px;
    line-height: 1.4;
  }
}

.reg-form .radio-box input[type="radio"] + .chk-btn span {
  position: relative;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #b8b8b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.reg-form .radio-box input[type="radio"] + .chk-btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: transparent;
  transition: all 0.2s;
}

.reg-form .radio-box input[type="radio"]:checked + .chk-btn {
  color: #202020;
}

.reg-form .radio-box input[type="radio"]:checked + .chk-btn span {
  border-color: #1B1735;
}

.reg-form .radio-box input[type="radio"]:checked + .chk-btn span::before {
  width: 8px;
  height: 8px;
  background: #1B1735;
}

/* ── 결제금액 ── */
.reg-cost {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 20px 24px;
  background: #f9f9f9;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #202020;
}

.reg-cost__amount {
  font-size: 28px;
  font-weight: 700;
  color: #e62e2e;
}

@media (max-width: 768px) {
  .reg-cost {
    font-size: 15px;
    padding: 16px 18px;
  }

  .reg-cost__amount {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .reg-cost__amount {
    font-size: 18px;
  }
}

/* 무료 등록 코드 */
.reg-form .reg-promo-row {
  margin-top: 24px;
}

.reg-form .reg-promo-flex {
  gap: 12px;
  align-items: stretch;
}

.reg-form .reg-promo-flex .input-box {
  flex: 1;
  min-width: 0;
}

/* 적용 버튼 */
.reg-form .reg-btn--promo-apply {
  flex: 0 0 auto;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  max-width: 88px;
  width: 88px;
  height: 60px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.2;
  white-space: nowrap;
  background-color: #202020;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, background-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.reg-form .reg-btn--promo-apply:hover {
  opacity: 0.92;
}

.reg-form .reg-btn--promo-apply:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.reg-form .reg-promo-status {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 14px;
  color: #8a8a8a;
  line-height: 1.6;
}

.reg-form .reg-promo-status--ok {
  color: #0d7a4e;
  font-weight: 600;
}

.reg-form .reg-promo-billing {
  margin-top: 16px;
}

/* 초청 방식: 텍스트 인풋·셀렉트와 동일한 테두리 박스 + 폼 공통 라디오(chk-btn) */
.reg-form .reg-promo-billing__shell {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
  padding: 0 20px;
  transition: border-color 0.3s;
}

.reg-form .reg-promo-billing__shell:focus-within {
  border-color: #1b1735;
}

.reg-form .reg-promo-billing__radio-group.radio-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}

.reg-form .reg-promo-billing__radio-group .radio-box {
  display: block;
  width: 100%;
}

.reg-form .reg-promo-billing__radio-group .radio-box + .radio-box {
  border-top: 1px solid #f0f0f0;
}

.reg-form .reg-promo-billing__radio-group .chk-btn {
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 10px 4px 10px 0;
  border-radius: 0;
}

.reg-form .reg-promo-billing__radio-group .radio-box:first-child .chk-btn {
  padding-top: 4px;
}

.reg-form .reg-promo-billing__radio-group .radio-box:last-child .chk-btn {
  padding-bottom: 4px;
}

@media (max-width: 768px) {
  .reg-form .reg-promo-billing__shell {
    padding: 10px 16px;
  }

  .reg-form .reg-promo-billing__radio-group .chk-btn {
    min-height: 46px;
    font-size: 15px;
  }
}

.reg-form .reg-free-kma-block {
  margin-top: 14px;
}

.reg-form .reg-free-kma-ack {
  margin-top: 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d50000;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
}

.reg-form .reg-free-kma-ack:has(.reg-free-kma-ack__input:checked) {
  border-color: #0f2e86;
  box-shadow: 0 0 0 1px rgba(15, 46, 134, 0.08);
}

.reg-form .reg-free-kma-ack:focus-within {
  outline: none;
}

.reg-form .reg-free-kma-ack__label {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  cursor: pointer;
  line-height: 1.35;
  color: #d50000;
  transition: color 0.15s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.reg-form .reg-free-kma-ack:has(.reg-free-kma-ack__input:checked) .reg-free-kma-ack__label {
  color: #0f2e86;
}

.reg-form .reg-free-kma-ack__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reg-form .reg-free-kma-ack__lead {
  display: inline-flex;
  align-items: center;
  gap: 8px 10px;
  flex: 0 0 auto;
}

.reg-form .reg-free-kma-ack__icons {
  position: relative;
  flex: 0 0 28px;
  width: 22px;
  height: 22px;
}

.reg-form .reg-free-kma-ack__icon {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 22px;
  height: 22px;
  transition: opacity 0.15s ease;
}

.reg-form .reg-free-kma-ack__icon--on {
  opacity: 0;
}

.reg-form .reg-free-kma-ack:has(.reg-free-kma-ack__input:checked) .reg-free-kma-ack__icon--off {
  opacity: 0;
}

.reg-form .reg-free-kma-ack:has(.reg-free-kma-ack__input:checked) .reg-free-kma-ack__icon--on {
  opacity: 1;
}

.reg-form .reg-free-kma-ack__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: clamp(10px, 2.4vw, 12px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #d50000;
  border: 1px solid #d50000;
  background: #fff;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.reg-form .reg-free-kma-ack:has(.reg-free-kma-ack__input:checked) .reg-free-kma-ack__badge {
  color: #0f2e86;
  border-color: #0f2e86;
}

.reg-form .reg-free-kma-ack__text {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  font-weight: 500;
  font-size: clamp(10px, 2.85vw, 14px);
  letter-spacing: -0.02em;
}

.reg-form .reg-free-kma-ack__text strong {
  font-weight: 700;
  color: inherit;
}

.reg-form .reg-free-kma-ack__footnote {
  margin: 10px 0 0;
  padding: 0;
  border: none;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
  font-weight: 400;
}

@media (max-width: 768px) {
  .reg-form .reg-btn--promo-apply {
    height: 52px;
    min-width: 80px;
    max-width: 80px;
    width: 80px;
    font-size: 15px;
  }

  /* 모바일에서도 한 줄 유지 (세로 쌓이면 버튼이 과도하게 넓어짐) */
  .reg-form .reg-promo-flex {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }

  /* 무료등록·평점 안내: 모바일은 아이콘+필수 한 줄, 본문은 아래로 줄바꿈해 가독성 확보 */
  .reg-form .reg-free-kma-ack {
    overflow: visible;
    padding: 14px 14px;
  }

  .reg-form .reg-free-kma-ack__label {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 12px;
    line-height: 1.5;
  }

  .reg-form .reg-free-kma-ack__lead {
    margin-top: 1px;
  }

  .reg-form .reg-free-kma-ack__text {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
    line-height: 1.6;
    font-size: 15px;
    letter-spacing: 0;
  }

  .reg-form .reg-free-kma-ack__footnote {
    margin-top: 12px;
    padding-left: 2px;
    padding-right: 2px;
    font-size: 14px;
    line-height: 1.58;
    word-break: keep-all;
  }
}

@media (max-width: 480px) {
  .reg-form .reg-free-kma-ack {
    padding: 12px 12px;
  }

  .reg-form .reg-free-kma-ack__label {
    gap: 8px 10px;
  }

  .reg-form .reg-free-kma-ack__icons {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

  .reg-form .reg-free-kma-ack__icon {
    width: 24px;
    height: 24px;
  }

  .reg-form .reg-free-kma-ack__badge {
    padding: 4px 10px;
    font-size: 12px;
  }

  .reg-form .reg-free-kma-ack__text {
    font-size: 14px;
    line-height: 1.62;
  }

  .reg-form .reg-free-kma-ack__footnote {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* ── 버튼 ── */
.reg-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.reg-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: none;
  border-radius: 8px;
  background-color: #f2f4f6;
  color: #4e5968;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

/* 사이트 대표 컬러: auth .auth-btn--primary 와 동일 (#1B1735) */
.reg-btn--submit,
.reg-btn--submit:link,
.reg-btn--submit:visited {
  background-color: #1B1735;
  color: #fff !important;
  border: none;
}

.reg-btn--submit:hover {
  background-color: #1a1f2e;
  color: #fff !important;
  opacity: 1;
}

.reg-btn--cancel {
  background-color: #fff;
  color: #202020;
  border: 1px solid #e6e6e6;
}

.reg-btn--cancel:hover {
  background-color: #fff;
}

.reg-btn--black,
.reg-btn--black:link,
.reg-btn--black:visited {
  background-color: #000;
  color: #fff;
  border: none;
}

.reg-btn--black:hover,
.reg-btn--black:focus {
  background-color: #1a1a1a;
  color: #fff;
  opacity: 1;
}

.reg-btn--submit:disabled {
  background-color: #b8b8b8;
  color: #fff !important;
  cursor: not-allowed;
  opacity: 1;
}

@media (max-width: 768px) {
  .reg-btn {
    font-size: 15px;
    padding: 12px 16px;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .reg-btn {
    font-size: 15px;
    padding: 12px 14px;
  }
}


/* 결제 성공 (토스 샘플 플로우: 승인 버튼 → 완료 패널) */
.reg-pay-success-page .inner-1520 {
  max-width: 540px;
}

.reg-pay-success-page .reg-pay-success {
  padding-top: 16px;
}

.reg-pay-success {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 80px;
  text-align: center;
}

/* 결제 실패 */
.reg-pay-fail-page__inner {
  max-width: 560px;
  margin: 0 auto;
}

.reg-pay-fail-page__box {
  text-align: center;
  padding: 24px 16px 60px;
}

.reg-pay-fail-page__heading {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: #202020;
}

.reg-pay-fail-page__msg {
  margin: 0 0 24px;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.55;
}

.reg-pay-fail-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .reg-pay-fail-page__heading {
    font-size: 18px;
  }
}

.reg-pay-success__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* hidden 속성은 UA 스타일(display:none)인데, 위 display:flex가 덮어써서 두 패널이 동시에 보임 */
.reg-pay-success__panel[hidden],
.reg-pay-success #pay-error[hidden] {
  display: none !important;
}

.reg-pay-success__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.reg-pay-success__hero img {
  display: block;
  margin-bottom: 8px;
}

.reg-pay-success__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #202020;
  line-height: 1.35;
}

.reg-pay-success__desc {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
}

.reg-pay-success__confirm-btn {
  width: 100%;
  max-width: 100%;
}

.reg-pay-success__error {
  margin: 16px 0 0;
  font-size: 14px;
  color: #b42318;
  line-height: 1.5;
}

.reg-pay-success__response {
  width: 100%;
  margin: 8px 0 32px;
  padding: 20px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  text-align: left;
}

.reg-pay-success__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  font-size: 15px;
}

.reg-pay-success__row + .reg-pay-success__row {
  border-top: 1px solid #f0f0f0;
}

.reg-pay-success__label {
  flex-shrink: 0;
  color: #6b7280;
  font-weight: 500;
}

.reg-pay-success__value {
  text-align: right;
  word-break: break-all;
  color: #202020;
  font-weight: 600;
}

.reg-pay-success__value--mono {
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 13px;
  font-weight: 500;
}

.reg-pay-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.reg-pay-success__action {
  flex: 1 1 calc(50% - 6px);
  min-width: 140px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .reg-pay-success__action {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .reg-pay-success {
    padding: 28px 12px 56px;
  }

  .reg-pay-success__hero {
    margin-bottom: 22px;
  }

  .reg-pay-success__title {
    font-size: 19px;
    line-height: 1.35;
  }

  .reg-pay-success__desc {
    font-size: 14px;
  }

  .reg-pay-success__row {
    font-size: 14px;
    gap: 12px;
    padding: 9px 0;
  }

  .reg-pay-success__label {
    font-size: 13px;
  }

  .reg-pay-success__value {
    font-size: 14px;
  }

  .reg-pay-success__value--mono {
    font-size: 11px;
  }

  .reg-pay-success__error {
    font-size: 13px;
  }

  .reg-pay-success__response {
    margin: 6px 0 24px;
    padding: 16px 0;
  }
}

@media (max-width: 480px) {
  .reg-pay-success__title {
    font-size: 18px;
  }

  .reg-pay-success__desc {
    font-size: 13px;
  }
}

/* 비회원 / 이미 신청 완료 안내 */
.reg-state-panel {
  max-width: 560px;
  margin: 0 auto 48px;
  padding: 32px 28px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fafafa;
  text-align: center;
}

.reg-state-panel__lead {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.55;
  color: #202020;
}

@media (max-width: 768px) {
  .reg-state-panel__lead {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .reg-state-panel__lead {
    font-size: 15px;
    line-height: 1.5;
  }
}

.reg-state-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.reg-already-notice {
  text-align: left;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.reg-already-notice strong {
  display: block;
  font-size: 17px;
  color: #1B1735;
  margin-bottom: 8px;
}

.reg-already-notice__sub {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}

.reg-already-dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 16px;
  margin: 0 0 28px;
  text-align: left;
  font-size: 14px;
}

.reg-already-dl__dt {
  margin: 0;
  color: #6b7280;
  font-weight: 600;
}

.reg-already-dl__dd {
  margin: 0;
  color: #111827;
  word-break: break-word;
}

@media (max-width: 480px) {
  .reg-already-dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .reg-already-dl__dd {
    margin-bottom: 12px;
  }
}

.reg-state-panel__actions--already {
  margin-top: 8px;
}

.reg-profile-hint {
  margin: -8px 0 20px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.reg-profile-hint a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reg-input-readonly {
  background-color: #f3f4f6 !important;
  color: #374151;
  cursor: default;
}

.reg-banner {
  margin-bottom: 24px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.reg-banner--warn {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
}

.reg-banner__link {
  display: inline-block;
  margin-left: 8px;
  font-weight: 600;
  color: #b45309;
  text-decoration: underline;
  text-underline-offset: 2px;
}



