.join-form {
  max-width: 76rem;
  padding: 0 2rem;
  margin: 0 auto;
}
.join-form__panel {
  position: relative;
  max-width: none;
  padding: 5.4rem 6rem 5rem;
  overflow: hidden;
  border: 1px solid #d9dde7;
  border-radius: 2.4rem;
  background-color: #fff;
  box-shadow: 0 1.8rem 5rem rgba(17, 47, 117, 0.08);
}
.join-form__panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.6rem;
  background: linear-gradient(90deg, #112f75 0 76%, #ef8d34 76% 100%);
}
.join-form__head {
  padding-bottom: 3.4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #e8e9ef;
  text-align: center;
}
.join-form__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 3.2rem;
  padding: 0.7rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 99.9rem;
  background-color: #f1f0f6;
  font-family: "S-CoreDream", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #112f75;
}
.join-form__guide {
  font-family: "NanumSquareAc", sans-serif;
  font-size: 1.7rem;
  line-height: 2.7rem;
  color: #56637d;
}
.join-form__body .form-row {
  gap: 1.4rem 0;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #eff0f4;
}
.join-form__body .form-row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.join-form__body .form-row__label {
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.join-form__body .form-row__content {
  min-width: 0;
}
.join-form__body .form-row__content > input[type=text],
.join-form__body .form-row__content > input[type=email],
.join-form__body .form-row__content > input[type=password],
.join-form__body .form-row__content > select,
.join-form__body .form-row__content > textarea {
  border-color: #ebeaf1;
  background-color: #f7f7fa;
  color: #112f75;
  box-shadow: none;
}
.join-form__body .form-row__content > select {
  width: 100%;
  height: 7rem;
  padding: 1.5rem 2.3rem;
  border-radius: 1rem;
  font-family: "NanumSquareAc", sans-serif;
  font-size: 1.8rem;
}
.join-form__body .form-row__content > div:has(input[type=radio]) {
  gap: 1rem;
}
.join-form__body .form-row__content > div:has(input[type=radio]) > label {
  min-height: 5.2rem;
  padding: 1rem 1.8rem 1rem 1.2rem;
  border: 1px solid #e2e2e9;
  border-radius: 1.2rem;
  background-color: #fff;
  font-family: "NanumSquareAc", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #112f75;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.join-form__body .form-row__content > div:has(input[type=radio]) > label:hover, .join-form__body .form-row__content > div:has(input[type=radio]) > label:has(input:checked) {
  border-color: #112f75;
  background-color: #f8f9fd;
}
.join-form__body .has-error .form-row__label,
.join-form__body .has-error .help-block,
.join-form__body .has-error .text-danger {
  color: #c53f3f;
}
.join-form__body .has-error input,
.join-form__body .has-error select,
.join-form__body .has-error textarea {
  border-color: #c53f3f;
}
.join-form__body .help-block,
.join-form__body .text-danger,
.join-form__body .cms-form-desc {
  display: block;
  margin-top: 0.9rem;
  font-size: 1.4rem;
  line-height: 2.1rem;
}
.join-form__body .alert {
  margin-bottom: 3rem;
}
.join-form__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 4rem;
  margin-top: 4rem;
  border-top: 1px solid #e8e9ef;
}
.join-form__actions .btn {
  min-width: 15rem;
  min-height: 5.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.4rem 2.4rem;
  border-radius: 99.9rem;
  border: 1px solid #112f75;
  font-family: "NanumSquareAc", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.join-form__actions .btn-primary,
.join-form__actions button[type=submit] {
  background-color: #112f75;
  color: #fff;
}
.join-form__actions .btn-primary:hover, .join-form__actions .btn-primary:focus,
.join-form__actions button[type=submit]:hover,
.join-form__actions button[type=submit]:focus {
  border-color: #ef8d34;
  background-color: #ef8d34;
  color: #fff;
}
.join-form__actions a.btn {
  background-color: #fff;
  color: #112f75;
}
.join-form__actions a.btn:hover, .join-form__actions a.btn:focus {
  border-color: #ef8d34;
  background-color: #fff8f1;
  color: #d96f14;
}
.join-form__actions .btn-danger {
  border-color: #d9dde7;
  background-color: #fff;
  color: #7d8494;
}
.join-form__actions .btn-danger:hover, .join-form__actions .btn-danger:focus {
  border-color: #c53f3f;
  background-color: #fff6f6;
  color: #c53f3f;
}

.account-choice__list {
  display: grid;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.account-choice__item {
  margin: 0;
}
.account-choice__link {
  min-height: 6.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.6rem 2.2rem;
  border: 1px solid #e2e2e9;
  border-radius: 1.4rem;
  background-color: #fff;
  font-family: "NanumSquareAc", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 2.4rem;
  color: #112f75;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.account-choice__link:hover, .account-choice__link:focus {
  border-color: #112f75;
  background-color: #f8f9fd;
  color: #112f75;
  transform: translateY(-0.2rem);
}
.account-choice__link strong {
  flex: 0 0 auto;
  color: #ef8d34;
}
.account-choice__mark {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #ef8d34;
  box-shadow: 0 0 0 0.7rem #fff3e8;
}
.account-choice__message {
  padding: 1.2rem 1.8rem 0;
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: #c53f3f;
}

.account-login__providers:not(:empty) {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e8e9ef;
}
.account-login__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
  padding-top: 2.4rem;
}
.account-login__links a {
  position: relative;
  font-family: "NanumSquareAc", sans-serif;
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #56637d;
  text-decoration: none;
}
.account-login__links a:hover, .account-login__links a:focus {
  color: #ef8d34;
}
.account-login__links a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.2rem;
  width: 1px;
  height: 1.2rem;
  background-color: #d9dde7;
  transform: translateY(-50%);
}

.account-result__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}
.account-result__body strong {
  max-width: 100%;
  margin-top: 2.2rem;
  font-family: "S-CoreDream", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3.4rem;
  color: #112f75;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.account-result__body p {
  max-width: 100%;
  margin-top: 1rem;
  font-family: "NanumSquareAc", sans-serif;
  font-size: 1.6rem;
  line-height: 2.5rem;
  color: #68738a;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.account-result__icon {
  width: 7.2rem;
  height: 7.2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #112f75;
  box-shadow: 0 1.2rem 2.8rem rgba(17, 47, 117, 0.18);
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: #fff;
}

.account-result .join-form__actions > .btn:only-child {
  width: 100%;
  max-width: 14rem;
  flex: 0 1 14rem;
}

.page-content:has(.account-error) > .page-title {
  display: none;
}

.account-error .join-form__actions .btn-group {
  display: inline-flex;
  gap: 1rem;
}
.account-error .join-form__actions .btn-group > .btn {
  position: static;
  float: none;
  min-width: 15rem;
  margin-left: 0;
  border: 2px solid #112f75;
  border-radius: 999px !important;
  background-color: #fff;
  color: #112f75;
}
.account-error .join-form__actions .btn-group > .btn:first-child {
  background-color: #112f75;
  color: #fff;
}

.account-notice {
  padding: 2.4rem 2.6rem;
  border: 1px solid #dfe3ec;
  border-radius: 1.4rem;
  background-color: #f7f8fb;
  font-family: "NanumSquareAc", sans-serif;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #56637d;
}
.account-notice strong {
  display: block;
  margin-bottom: 0.6rem;
  font-family: "S-CoreDream", sans-serif;
  font-weight: 700;
  color: #112f75;
}
.account-notice p + p {
  margin-top: 0.6rem;
}
.account-notice--warning {
  border-color: #f0d7bd;
  background-color: #fff8f1;
}
.account-notice--warning strong {
  color: #d96f14;
}
.account-notice--danger {
  border-color: #efd1d1;
  background-color: #fff6f6;
}
.account-notice--danger strong,
.account-notice--danger .account-notice__dev {
  color: #c53f3f;
}

.account-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e4eb;
  border-radius: 1.4rem;
}

.account-table {
  width: 100%;
  min-width: 68rem;
  border-collapse: collapse;
  font-family: "NanumSquareAc", sans-serif;
  font-size: 1.5rem;
  line-height: 2.3rem;
  color: #4e5c76;
}
.account-table th,
.account-table td {
  padding: 1.8rem 1.6rem;
  border-bottom: 1px solid #eceef3;
  text-align: left;
  vertical-align: middle;
}
.account-table th {
  background-color: #f4f5f9;
  font-weight: 700;
  color: #112f75;
  white-space: nowrap;
}
.account-table tbody tr:last-child td {
  border-bottom: 0;
}
.account-table__actions {
  white-space: nowrap;
}
.account-table__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid #112f75;
  border-radius: 99.9rem;
  background-color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  color: #112f75;
  text-decoration: none;
}

.account-policy__item {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e8e9ef;
}
.account-policy__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.account-policy__item h3 {
  margin-bottom: 1.4rem;
  font-family: "S-CoreDream", sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 2.8rem;
  color: #112f75;
}
.account-policy__content {
  max-height: 30rem;
  overflow-y: auto;
  padding: 2rem;
  border: 1px solid #e2e4eb;
  border-radius: 1rem;
  background-color: #f8f9fb;
  font-family: "NanumSquareAc", sans-serif;
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #56637d;
}
.account-policy__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.6rem;
}
.account-policy__choices label {
  min-height: 4.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.6rem;
  border: 1px solid #e2e2e9;
  border-radius: 1rem;
  cursor: pointer;
}
.account-policy__choices label:has(input:checked) {
  border-color: #112f75;
  background-color: #f8f9fd;
}
.account-policy__required {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #c53f3f;
}
.account-policy__badge {
  display: inline-flex;
  padding: 0.4rem 0.8rem;
  margin-right: 0.8rem;
  border-radius: 99.9rem;
  background-color: #eef1f8;
  font-size: 1.2rem;
  line-height: 1;
  color: #112f75;
}

.account-policy-view__content {
  max-height: none;
}
.account-policy-view__versions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 2.4rem 0 0;
  margin: 0;
  list-style: none;
}
.account-policy-view__versions a {
  display: inline-flex;
  padding: 0.9rem 1.4rem;
  border: 1px solid #d9dde7;
  border-radius: 99.9rem;
  color: #56637d;
  text-decoration: none;
}

.profile-detail__body .form-row__content {
  min-height: 6.2rem;
  display: flex;
  align-items: center;
  padding: 1.7rem 2.2rem;
  border: 1px solid #ebeaf1;
  border-radius: 1rem;
  background-color: #f7f7fa;
  font-family: "NanumSquareAc", sans-serif;
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: #112f75;
  word-break: break-word;
}
.profile-detail__actions {
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .join-form {
    padding: 0 1.6rem;
  }
  .join-form__panel {
    padding: 4rem 3.2rem 3.6rem;
    border-radius: 2rem;
  }
  .join-form__head {
    padding-bottom: 2.8rem;
    margin-bottom: 3.2rem;
  }
  .join-form__guide {
    font-size: 1.5rem;
    line-height: 2.4rem;
  }
  .join-form__body .form-row {
    gap: 0.8rem 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .join-form__body .form-row__label {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .join-form__body .form-row__content > input[type=text],
  .join-form__body .form-row__content > input[type=email],
  .join-form__body .form-row__content > input[type=password],
  .join-form__body .form-row__content > select {
    height: 5.8rem;
    padding: 1.2rem 1.7rem;
    font-size: 1.6rem;
  }
  .join-form__actions {
    padding-top: 3.2rem;
    margin-top: 3.2rem;
  }
  .join-form__actions .btn {
    min-width: 13rem;
    min-height: 5.4rem;
    font-size: 1.6rem;
  }
  .join-form .join-form__body .form-row {
    padding: 0 0 1rem;
  }
  .account-table {
    font-size: 1.4rem;
  }
  .account-table th,
  .account-table td {
    padding: 1.4rem 1.2rem;
  }
}
@media (max-width: 480px) {
  body:has(.join-form) .site-fixed-menu {
    top: auto;
    right: 1.6rem;
    bottom: 1.6rem;
    transform: none;
  }
  body:has(.join-form) .site-fixed-menu .site-fixed-menu__link {
    width: 6.4rem;
    height: 6.4rem;
  }
  .join-form {
    padding: 0 1.6rem;
  }
  .join-form__panel {
    padding: 3.4rem 2rem 3rem;
    border-radius: 1.6rem;
  }
  .join-form__head {
    padding-bottom: 2.4rem;
    margin-bottom: 2.8rem;
  }
  .join-form__eyebrow {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
  }
  .join-form__guide {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .join-form__body .form-row__content > div:has(input[type=radio]) > label {
    min-height: 4.8rem;
    padding: 0.8rem 1.3rem 0.8rem 0.9rem;
    font-size: 1.4rem;
  }
  .join-form__actions {
    gap: 0.8rem;
  }
  .join-form__actions .btn {
    min-width: 0;
    flex: 1;
    min-height: 5rem;
    padding: 1.2rem 1.4rem;
    font-size: 1.5rem;
  }
  .profile-detail__body .form-row__content {
    min-height: 5.4rem;
    padding: 1.4rem 1.6rem;
    font-size: 1.5rem;
    line-height: 2.3rem;
  }
  .account-choice__link {
    min-height: 5.8rem;
    padding: 1.3rem 1.6rem;
    font-size: 1.5rem;
  }
  .account-result__icon {
    width: 6.2rem;
    height: 6.2rem;
    font-size: 2.8rem;
  }
  .account-result__body strong {
    font-size: 2rem;
    line-height: 3rem;
  }
  .account-notice {
    padding: 2rem;
    font-size: 1.5rem;
    line-height: 2.4rem;
  }
  .account-policy__content {
    padding: 1.6rem;
    font-size: 1.4rem;
    line-height: 2.3rem;
  }
}
