﻿@charset "UTF-8";

.modify-info__inner {
  padding-top: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.input--typeA.modify_name {
  position: relative;
}

.change_nm_area {
  position: absolute;
  right: 0;
  top: 0;
}

.change_nm_area .toggle_info {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  width: 148px;
  border-radius: 8px;
  height: 52px;
  background-color: #fff;
  box-shadow: 0 0 10px rgb(0, 0, 0, 0.1);
}

.change_nm_area .btn-textType:hover+.toggle_info {
  display: flex;
}

.change_nm_area .toggle_info p {
  text-align: center;
  font-size: 14px;
  color: #333;
}

.change_nm_area .toggle_info:after {
  content: "";
  display: inline-block;
  border-top: 10px solid transparent;
  border-right: 13px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 13px solid transparent;
  border-bottom-color: #fff;
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%) rotate(180deg);
}

.modify-complete__inner {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 40px;
}

.modify-complete p {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #505050;
}

.modify-complete__inner .btn_area {
  margin-top: 40px;
}

.modify-complete__inner .btn_area .btn {
  width: 100%;
}

.errorInputBorder {
  border: 1px solid red !important;
}

.error-message {
  font-size: 12px;
  color: red;
  margin-top: 5px;
  margin-bottom: 0;
}

.error-messages {
  margin-top: 5px;
}

.error-messages .error-message {
  margin-bottom: 2px;
}

.input_content {
  position: relative;
}

@media screen and (max-width:767px) {
  .modify-info__inner {
    padding-top: 20px;
  }

  .change_nm_area .toggle_info {
    left: auto;
    right: 0;
    transform: translateX(0);
  }

  .change_nm_area .toggle_info:after {
    left: auto;
    right: 14px;
    transform: translateX(0%) rotate(180deg);
  }

  .modify-complete__inner {
    padding-top: 20px;
    padding-bottom: 140px;
  }

  .modify-complete p {
    font-size: 14px;
  }

  .modify-complete__inner .btn_area {
    margin-top: 20px;
  }

  .modify-complete__inner .btn_area .btn {
    height: 48px;
    line-height: 48px;
    font-size: 16px;
  }
}

.service__inner {
  padding-top: 40px;
}

.service__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
}

.service-tab {
  overflow-y: hidden;
  overflow-x: auto;
}

.service-tab::-webkit-scrollbar {
  display: none;
}

.service-tab .tabs {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-tab .tabs .tabs__link {
  display: inline-block;
  width: max-content;
  padding: 0 16px;
  background-color: #F1F1F5;
  color: #999999;
  font-size: 18px;
  font-weight: 600;
  height: 41px;
  line-height: 41px;
  border-radius: 100px;
  cursor: pointer;
  text-align: center;
}

.service-tab .tabs .tabs__link.on {
  background-color: #111111;
  color: #fff;
}

.service-tab__content {
  display: none;
  margin-top: 20px;
}

.service-tab__content.on {
  display: block;
}

.service__top .btn_history {
  height: 46px;
  line-height: 46px;
  padding: 0 24px;
  font-weight: 600;
}

@media screen and (max-width:767px) {
  .service__inner {
    padding-top: 20px;
  }

  .service-tab .tabs .tabs__link {
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }

  .service__top .btn_history {
    width: 100%;
    height: 40px;
    line-height: 40px;
  }

  .tbl--typeA.tbl_service_payment col {
    width: 110px !important
  }
}

.exit__inner {
  padding-top: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.form_exit .info_txt {
  color: #333;
}

.exit__info {
  margin-top: 40px;
  background-color: #F7F7FB;
  padding: 12px;
  border-radius: 8px;
}

.exit__info p {
  color: #333;
}

@media screen and (max-width:767px) {
  .exit__inner {
    padding-top: 20px;
  }

  .exit__info {
    margin-top: 20px;
    padding: 8px;
  }

  .exit__info p {
    font-size: 14px;
  }
}

/* 본인인증 페이지 스타일 */
.auth__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.auth__info {
  margin-bottom: 40px;
}

.info-box {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px 20px;
  border: 2px solid #e8f4fd;
  border-radius: 10px;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
}

.info-box h3 {
  font-size: 20px;
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 16px;
  color: #64748b;
}

.auth__notice {
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

.auth__notice h4 {
  font-size: 16px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 15px;
}

.auth__notice ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.auth__notice li {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 8px;
}

.auth__method {
  margin-bottom: 30px;
}

.auth__method h4 {
  font-size: 18px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 20px;
  text-align: center;
}

.auth-method__list {
  display: flex;
  justify-content: center;
}

.auth-method__item {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 300px;
}

.auth-method__item.active {
  border-color: #3b82f6;
  background: #f0f9ff;
}

.method-icon {
  margin-right: 15px;
}

.method-icon i {
  font-size: 24px;
  color: #3b82f6;
}

.method-content h5 {
  font-size: 16px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 5px;
}

.method-content p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.auth__buttons {
  margin-bottom: 30px;
}

.auth__buttons .btn {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth__buttons .btn i {
  font-size: 18px;
}

.auth__footer {
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.button-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-w48p {
  width: 48%;
}

.c_red {
  color: #dc2626;
  font-weight: bold;
}

/* 본인인증 페이지 반응형 */
@media (max-width: 768px) {
  .auth__inner {
    padding: 20px 10px;
  }

  .info-box {
    padding: 20px 15px;
  }

  .info-box h3 {
    font-size: 18px;
  }

  .auth-method__item {
    padding: 15px;
  }

  .method-content h5 {
    font-size: 15px;
  }

  .method-content p {
    font-size: 12px;
  }

  .button-group {
    flex-direction: column;
  }

  .btn-w48p {
    width: 100%;
  }
}