@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Blinker:wght@100;200;300;400;600;700;800;900&family=Noto+Sans+KR:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap');

.body {
  font-size: 15px;
  /* //.글자폰트 크기 수정 */
  font-family: "Noto Sans KR", sans-serif;
}
/* ---------------------------------------------------------------- */
/* 인트로 */
.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: "Noto Sans KR";
}

.intro_bg ul {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  list-style: none;
}

.intro_bg ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; 
}

.intro_bg ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.intro .main_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  width: 1500px;
  height: 500px;
  background: rgba(0, 0, 0, 0.70);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* 웰컴 */
.main_box .welcome_comment {
  font-family: "ABeeZee";
  width: 460px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  margin-right: 147px;
}

.main_box .welcome_comment .main_comment p {
  color: #FFF;
  font-size: 50px;
  font-weight: 400;
}

.main_box .welcome_comment .main_comment b {
  color: #CF4F00;
  font-weight: 600;
}

.main_box .welcome_comment .sub_comment p {
  color: #CCC;
  font-size: 25px;
}

/* 로그인 영역 */
.login_box {
  width: 670px;
  height: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-100%, -50%); 
  background: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.25);
  font-family: "Noto Sans KR";
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 2025.08.25 수정 시작 */
.login_box_section {
  width: 405px;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.login_section_top {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
}

.login_section_top>p {
  color: #555;
  font-size: 18px;
  font-weight: 400;
}

.login_section_top>span {
  color: #333;
  font-size: 23px;
  font-weight: 700;
  margin-left: 15px;
}

.login_section_bottom {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
}

.login_section_bottom>p {
  color: #777;
  font-size: 15px;
  font-weight: 500;
}

.login_section_bottom>p>span {
  color: #CF4F00;
  font-size: 15px;
  font-weight: 500;
}
/* 2025.08.25 수정 끝 */

.login_section {
  width: 100%;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.login_box .login_section .login_top p {
  color: #CF4F00;
  font-family: "ABeeZee";
  font-size: 35px;
  font-weight: 400;
}

.login_main {
  width: 405px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.id_check, .pw_check {
  width: 405px;
  height: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.id_check p,.pw_check p {
  font-size: 25px;
  color: #ccc;
}

.id_check i,.pw_check i {
  width: 20px; 
  height: 23px; 
  display: inline-block;
  text-align: center;
  line-height: 23px;
  font-size: 20px;
  color: #ccc;
}

input {
  width: 300px;
  height: 23px;
  border: none;
  font-size: 25px;
  color: #333;
  margin-left: 12px;
}

input:focus {
  outline: none;
}

.pw_check input {
  margin-left: 0;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.3s ease-in-out; /* 흔들림 애니메이션 */
}

.login_bottom {
  display: flex;
  width: 405px;
  height: 60px;
  justify-content: space-between;
  align-items: center;
}

.forgot_pw p {
  font-size: 15px;
  color: #ccc;
}

.forgot_pw p {
  font-size: 15px;
  color: #ccc;
  position: relative; 
  cursor: pointer; 
}

.forgot_pw p:hover {
  color: #333;
  transition: color 0.3s ease;
}

.forgot_pw p::after {
  content: '';
  position: absolute;
  bottom: -7px; 
  left: 0;
  width: 0; 
  height: 2px; 
  background-color: #CF4F00;
  transition: width 0.3s ease; 
}

.forgot_pw p:hover::after {
  width: 100%; 
}

.login_btn button {
  width: 200px;
  height: 60px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  color: #CF4F00;
  font-size: 25px;
  font-weight: 400;
  cursor: pointer;
}

.login_btn button:hover {
  background: #CF4F00;
  color: #fff;
  transition: background-color 0.3s ease;
  transition: color 0.3s ease;
}

.intro_footer {
  position: absolute;
  bottom: 5%;
  left: 50%; 
  transform: translateX(-50%); 
  width: auto;
  height: 15px;
  text-align: center;
  z-index: 2;
}

.intro_footer pre {
  color: #333;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

body.modal-open {
  overflow: hidden;
  pointer-events: none;
}

.modal {
  width: 1000px;
  height: 597px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-17%, -50%); 
  background: #fff;
  display: none;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  pointer-events: auto; 
}

.modal.on {
  display: flex;
  flex-direction: column;
}

.modal>button>i:hover {
  color: #CF4F00;
  transition: color 0.3s ease;
}


.modal .modal_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal .modal_inner h1 {
  color: #333;
  font-family: "Noto Sans KR";
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
  text-align: center;
}

.modal .modal_inner>span {
  color: #CF4F00;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  margin-top: 30px;
}

.modal .btn {
  border: none;
  background: none;
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 50px;
  cursor: pointer;
}

.modal .btn i {
  color: #333;
  font-size: 23px;
}

.id_nm_section {
  width: 630px;
  height: 260px;
  margin-top: 80px;
}

.id_nm_section span {
  color: #333;
  font-family: "Noto Sans KR";
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.id_nm_ip_section {
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.id_txt, .id_box,  .id_box>input {
  width: 630px;
  height: 39px;
  margin-left: 0;
  border-bottom: 1px solid #CCC;
}

.nm_txt, .nm_box,  .nm_box>input {
  width: 630px;
  height: 39px;
  margin-left: 0;
  border-bottom: 1px solid #CCC;
}

.fw_find_btn {
  margin-top: 80px;
  display: flex;
  justify-content: flex-end;
}

.fw_find_btn>button {
  width: 198px;
  height: 58px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  cursor: pointer;
}

.fw_find_btn>button:hover {
  width: 200px;
  height: 60px;
  background: #333;
  color: #fff;
  transition: color 0.3s ease;
  transition: background-color 0.3s ease;
}

/* ---------------------------------------------------------------- */

.modal_pw {
  width: 1000px;
  height: 750px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  background: #fff;
  display: none;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  pointer-events: auto; 
}

.modal_pw.on {
  display: flex;
  flex-direction: column;
}

.modal_pw>.btn {
  border: none;
  background: none;
  width: 100%;
  height: 83px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 50px;
  cursor: pointer;
}

.modal_pw>.btn i {
  color: #333;
  font-size: 23px;
}

.modal_pw>button>i:hover {
  color: #CF4F00;
  transition: color 0.3s ease;
}

.p_modal_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p_modal_inner>h1 {
  color: #333;
  font-family: "Noto Sans KR";
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
  text-align: center;
}

.p_modal_inner>span {
  color: #CF4F00;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  margin-top: 30px;
}

.in_qa_section {
  width: 630px;
  height: 420px;
  margin-top: 80px;
}

.in_qa_section>span {
  color: #333;
  font-family: "Noto Sans KR";
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.in_qa_ip_section {
  width: 100%;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.id_a_section {
  width: 100%;
  height: 39px;
  border-bottom: 1px solid #ccc;
}

.id_a_section>span {
  color: #333;
  font-size: 25px;
  font-weight: 500;
}

.nm_a_section {
  width: 100%;
  height: 39px;
  border-bottom: 1px solid #ccc;
}

.nm_a_section>span {
  color: #333;
  font-size: 25px;
  font-weight: 500;
}

.q_a_txt, .q_a_box,  .q_a_box>input {
  width: 630px;
  height: 39px;
  margin-left: 0;
  border-bottom: 1px solid #CCC;
}

.a_txt, .a_box,  .a_box>input {
  width: 630px;
  height: 39px;
  margin-left: 0;
  border-bottom: 1px solid #CCC;
}

.fw_find_c_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.fw_find_c_btn>button {
  cursor: pointer;
  width: 628px;
  height: 58px;
  border-radius: 10px;
  background: #FBF4EF;
  border: 1px solid #CF4F00;
  color: #CF4F00;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
}

.fw_find_c_btn>button:hover {
  width: 630px;
  height: 60px;
  color: #fff;
  background: #CF4F00;
  border: none;
  transition: color 0.3s ease;
  transition: background-color 0.3s ease;
}

/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */