/* 아이디/비밀번호 찾기 */

/* 정보 입력 영역 */
.contentsArt {
  flex: 1;
}

/* 텍스트 타이틀 영역 */
.findTitArt {
  width: 70%;
  max-width: 1400px;
  margin: 100px auto 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.findTitArt > p:first-child {
  color: var(--titColor);
  font-size: 24px;
  font-weight: 700;
}
.findTitArt > p:nth-child(2) {
  color: var(--orangeColor);
  font-size: 15px;
  font-weight: 400;
}

/* 로그인/회원가입 메뉴 영역 */
.menusArt {
  width: 70%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divMenus {
  display: flex;
}

.divMenu {
  width: 240px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-bottom: 2px solid var(--backColor1);
  cursor: pointer;
  font-weight: 500;
}
.divMenu.on {
  border-bottom: 2px solid var(--mainColor);
  color: var(--mainColor);
}

/* 내용 영역 */
.pageArt {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex: 1;
}
.pageDiv.on {
  display: flex;
}

/* 휴대전화 인증 */
.phoneArt {
  width: 480px;
  height: max-content;
  padding: 20px;
  border-left: 1px solid var(--backColor1);
  border-right: 1px solid var(--backColor1);
  border-bottom: 1px solid var(--backColor1);
  display: none;
  flex-direction: column;
  gap: 20px;
}

/* 입력 영역 */
.inputDiv {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inputBox {
  height: 40px;
  display: flex;
  align-items: center;
  background-color: var(--backColor1);
  border-radius: 5px;
}

.inputBoxTit {
  width: 110px;
  padding: 10px;
  font-size: 14px;
  color: var(--titColor);
  font-weight: 500;
  flex-shrink: 0;
}

.inputBoxTxt {
  flex: 1;
  height: 100%;
}

/* 이름 */
.nameBoxTxt > input {
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  font-size: 14px;
}

/* 휴대전화번호 */
.phoneBoxTxt {
  display: flex;
  align-items: center;
  padding: 5px;
}

.phoneBoxTxt > input[type=text] {
  width: 70%;
  height: 100%;
  border: none;
  background-color: transparent;
}

.phoneBoxTxt > input[type=button] {
  width: 30%;
  height: 100%;
  background-color: var(--mainColor);
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

/* 인증번호 */
.codeBoxTxt {
  display: flex;
  padding: 5px;
}

.codeInputs {
  display: flex;
  align-items: center;
  width: 70%;
}
.codeInputs > input[type=text] {
  width: 75%;
  height: 100%;
  border: none;
  background-color: transparent;
}
.timerBox {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--redColor);
  font-weight: 500;
}

.codeBoxTxt > input[type=button] {
  background-color: var(--mainColor);
  width: 30%;
  border: none;
  border-radius: 3px;
  font-weight: 500;
  cursor: pointer;
}

.codeBox input[type=button]:disabled {
  background-color: var(--backColor1);
  border: 1px solid var(--txtGColor);
  color: var(--txtGColor);
}

/* 검증 영역 */
.inputCheckTxt {
  text-align: center;
  color: var(--redColor);
  font-size: 14px;
  font-weight: 500;
}
.inputCheckPs {
  visibility: hidden;
}

/* 버튼 */
.findBtn {
  width: 100%;
  height: 40px;
  border: none;
  background-color: var(--mainColor);
  color: var(--titColor);
  font-weight: 600;
}

.findBtn:disabled {
  background-color: var(--backColor1);
}

/* 이메일 인증 */
.emailArt {
  width: 480px;
  height: max-content;
  padding: 20px;
  border-left: 1px solid var(--backColor1);
  border-right: 1px solid var(--backColor1);
  border-bottom: 1px solid var(--backColor1);
  display: none;
  flex-direction: column;
  gap: 20px;
}

/* 계정 정보 */

.findPhoneId {
  width: 70%;
  max-width: 1400px;
  margin: 0 auto;
  flex: 1;
  display: none;
}

.findEmailId {
  width: 70%;
  max-width: 1400px;
  margin: 0 auto;
  flex: 1;
  display: none;
}

.findBox {
  width: 480px;
  margin: 0 auto;
  border: 1px solid var(--backColor1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 값 표출 영역 */
.findInfoBox {
  background-color: #EAF4FF;
  text-align: center;
  padding: 40px 20px;
  line-height: 26px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.findTxt {
  font-size: 18px;
  color: var(--titColor);
  font-weight: 600;
}

.joinDays {
  font-size: 15px;
  color: var(--txt6Color);
}

/* 버튼 */
.findPwBtn {
  width: 100%;
  height: 40px;
  background-color: var(--txtColor);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
}

.loginBtn {
  width: 100%;
  height: 40px;
  background-color: var(--mainColor);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  font-weight: 600;
}

.idAllBtn {
  height: 40px;
  border: 1px solid var(--mainColor);
  background-color: var(--whiteColor);
  color: var(--mainColor)
}

/* 비밀번호 */

/* 비밀번호 입력 */
.pwInputBox .inputBoxTit {
  width: 120px;
}

.pwInputBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pwBoxTxt {
  flex: 1;
  display: flex;
}

.pwBoxTxt > input {
  width: 90%;
  height: 100%;
  border: none;
  background-color: transparent;
}

.eyeBox {
  width: 10%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
}

.eyeBox > div {
  width: 24px;
  height: 24px;
}

.eyeOnBox {
  display: none;
}

.pwInputCheck {
  line-height: 22px;
}

.pwSettingBtn {
  width: 100%;
  height: 40px;
  background-color: var(--mainColor);
  border: none;
  font-weight: 500;
}

.pwPsTxt {
  text-align: right;
  font-size: 13px;
  color: var(--txt6Color);
}

/* 이메일로 비밀번호 찾기 */
.emailFindTxt {
  font-size: 14px;
  line-height: 18px;
  color: var(--titColor);
  font-weight: 500;
}

.findInfoPs {
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  color: var(--txt6Color);
  font-weight: 500;
}

/* 휴대전화 인증 변경 */
.phoneConfirmBtn {
  width: 100%;
  height: 40px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phoneArt .inputDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  text-align: center;
  gap: 20px;
}

.phoneIconBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.phoneIcon {
  width: 80px;
  height: 80px;
}
.phoneIconBox > p {
  color: var(--hoverColor);
  font-weight: 600;
  font-size: 18px;
}

.phoneIconBoxTxt {
  font-size: 14px;
  line-height: 20px;
  color: var(--txt9Color);
}

/* 비밀번호 아이디 입력 */
.idInputArt {
  width: 480px;
  height: max-content;
  padding: 20px;
  border-left: 1px solid var(--backColor1);
  border-right: 1px solid var(--backColor1);
  border-bottom: 1px solid var(--backColor1);
  display: none;
  flex-direction: column;
  gap: 20px;
}

/* 반응형 */
@media screen and (max-width: 1000px) {
  .findTitArt > p:first-child {
    font-size: 20px;
  }
  .findTitArt > p:nth-child(2) {
    font-size: 14px;
  }
}

@media screen and (max-width: 800px) {
  .findTitArt {
    margin: 60px auto 40px
  }

  .divMenu {
    width: 200px;
    height: 40px;
  }
  .phoneArt {
    width: 400px;
  }
  .emailArt {
    width: 400px;
  }
  .idInputArt {
    width: 400px;
  }

  .findBox {
    width: 400px;
  }

  .findTitArt > p:first-child {
    font-size: 17px;
  }
  .findTitArt > p:nth-child(2) {
    font-size: 13px;
  }

  .pwPsTxt {
    font-size: 11px;
  }
}

@media screen and (max-width: 600px) {
  .findTitArt {
    width: 85%;
    margin: 50px auto 30px;
    gap: 6px;
  }

  .menusArt {
    width: 85%;
  }
  .pageArt {
    width: 85%;
    margin: 0 auto 80px;
  }
  .phoneArt {
    width: 100%;
    padding: 15px 10px;
  }
  .emailArt {
    width: 100%;
    padding: 15px 10px;
    gap: 10px;
  }
  .idInputArt {
    width: 100%;
    padding: 15px 10px;
  }
  
  .findPhoneId {
    width: 85%;
    margin: 0 auto 60px;
  }
  .findEmailId {
    width: 85%;
    margin: 0 auto 60px;
  }

  .findTxt {
    font-size: 16px;
  }
  .joinDays {
    font-size: 14px;
  }
  .findInfoBox {
    padding: 20px 10px;
    gap: 10px;
  }

  .findBox {
    width: 100%;
    padding: 15px 10px;
  }

  .divMenus {
    width: 100%;
  }
  .divMenu {
    width: 50%;
  }

  .phoneIcon {
    width: 60px;
    height: 60px;
  }

  .phoneIconBox > p {
    font-size: 16px;
  }

  .phoneIconBoxTxt {
    font-size: 13px;
  }
  .phoneArt .inputDiv {
    gap: 15px;
    padding: 15px 0;
  }

  .inputBox {
    height: 35px;
  }
  .nameBoxTxt > input {
    font-size: 13px;
  }

  .inputBoxTit {
    width: 90px;
    font-size: 13px;
  }
  .pwInputBox .inputBoxTit {
    width: fit-content;
  }

  .pwBoxTxt > input {
    flex: 1;
    font-size: 13px;
  }
  .eyeBox {
    width: 35px;
    height: 35px;
    padding: 10px;
  }
  .inputCheckTxt {
    font-size: 12px;
  }
  .pwInputCheck {
    line-height: 20px;
  }

  .emailFindTxt {
    font-size: 13px;
  }

  .findInfoPs {
    line-height: normal;
    font-size: 12px;
    word-break: keep-all;
  }

}
