/* 비밀번호 찾기 */

.findArt {
  width: 70%;
  flex: 1;
  display: none;
  flex-direction: column;
  margin: 60px auto;
}
.findArt.on {
  display: flex;
}

.findTit {
  font-size: 18px;
  color: var(--titColor);
  font-weight: 700;
}

/* 아이디 입력 */
.findArt1 {
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.findInputBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.findInput {
  width: 300px;
  height: 35px;
  border: 1px solid var(--borderLine);
  padding: 0 10px;
}


/* 본인인증 */
.findArt2 {
  gap: 20px;
}
.findTitBox {
  width: 80%;
  margin: 0 auto 20px;
  line-height: 33px;
}
.findTitBox .findSubTxt {
  display: flex;
  align-items: center;
  gap: 8px;
}
.findTitBox .findSubTxt::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--txt9Color);
  border-radius: 10px;
  flex-shrink: 0;
}

.findTypeBox {
  display: flex;
  justify-content: center;
}

.findCheckBox {
  display: flex;
  gap: 30px;
}


.findType {
  font-size: 19px;
  color: var(--txtColor);
  font-weight: 700;
}
.findSubTxt {
  font-size: 15px;
  color: var(--txt9Color);
}

.confirmBox {
  width: 300px;
  height: 360px;
  background-color: var(--whiteColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  border: 2px solid var(--whiteColor);
  gap: 15px;
  padding: 20px;
  text-align: center;
}
.confirmBox .findSubTxt {
  word-break: keep-all;
  line-height: 22px;
  height: 80px;
  font-size: 14px;
}

.confirmIcon {
  width: 70px;
  height: 70px;
}

.confirmBtn {
  width: 140px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mainColor);
  font-size: 14px;
  color: var(--whiteColor);
  cursor: pointer;
}


.pageBottomBtns {
  justify-content: center;
  margin: 60px 0;
}
.pageBottomBtns input[type=button] + label {
  width: 140px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--borderLine);
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
}
.pageBottomBtns input[type=button] {
  display: none;
}


.findNextBtn:disabled + label {
  background-color: var(--backGColor);
  color: var(--txt6Color);
  cursor: default !important;
}
.findNextBtn + label {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/* 찾은 아이디 */
.findIdBox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  line-height: 32px;
  font-size: 17px;
  color: var(--txtColor);
}

.userId {
  font-size: 20px;
}

/* 새 비밀번호 입력 */
.findArt4 {
  justify-content: center;
}

.newPassword {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.pwBox {
  display: flex;
  align-items: center;
}
.pwBox input {
  width: 300px;
  height: 35px;
  border-top: 1px solid var(--borderLine);
  border-left: 1px solid var(--borderLine);
  border-bottom: 1px solid var(--borderLine);
  border-right: none;
  padding: 0 0 0 5px;
  font-family: 'Pretendard';
}

.eyeBox {
  width: 30px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--borderLine);
  border-bottom: 1px solid var(--borderLine);
  border-right: 1px solid var(--borderLine);
  color: var(--txtGColor);
  cursor: pointer;
  font-size: 15px;
}
.eyeBox .xi-eye {
  display: none;
}

.pwInputBox {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pwInputBox > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 문구 */
.infoCheckBox {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--txt9Color);
}

.pwCheckNot, .pwsCheckTxt {
  color: var(--warningColor);
}
.pwsCheckOk {
  color: var(--txtBColor);
}

/* 초기 텍스트 none */
.pwCheckNot, .pwsCheckOk {
  display: none;
}

.findArt3 .roundBtns {
  border: 1px solid var(--mainColor);
}
.findArt3 .roundLineBtns {
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}
.findArt3 .roundLineBtns:hover {
  background-color: var(--subColor);
}

.pageReviewBox {
  width: 1300px;
  margin: 50px auto 60px;
}

@media screen and (max-width: 1300px) { 
  .pageReviewBox {
    width: 90%;
  }
}

/* 반응형 */
@media screen and (max-width: 1440px) {  
  .findTitBox {
    width: 95%;
  }

  .findTit {
    font-size: 16px;
  }

  .findSubTxt {
    font-size: 14px;
  }

  .findType {
    font-size: 16px;
  }

  .confirmBtn {
    width: 120px;
    height: 35px;
    font-size: 13px;
  }

  .pageBottomBtns input[type=button] + label {
    width: 130px;
  }
}

@media screen and (max-width: 1000px) { 
  .findTitBox .findSubTxt {
    font-size: 13px;
    line-height: 20px;
    word-break: keep-all;
    margin: 5px 0 0 0;
  }

}

@media screen and (max-width: 800px) {  
  .findTit {
    font-size: 15px;
  }

  .confirmBtn {
    width: 100px;
    height: 30px;
    font-size: 13px;
  }

  .pageBottomBtns input[type=button] + label {
    width: 110px;
    height: 35px;
    font-size: 13px;
    gap: 5px
  }

  .findIdBox {
    font-size: 15px;
  }
  .roundBtns {
    font-size: 13px;
  }
}



@media screen and (max-width: 600px) {
  .findArt {
    width: 80%;
  }

  .pageBottomBtns input[type=button] + label {
    font-size: 13px;
  }

  .infoCheckBox {
    font-size: 13px;
  }

  .findIdBox {
    font-size: 15px;
  }

  .roundBtns {
    font-size: 13px;
  }

  .confirmBox .findSubTxt {
    font-size: 13px;
  }
}

@media screen and (max-width: 500px) {   
  .findTitBox .findSubTxt {
    font-size: 13px;
    line-height: 18px;
  }
  .findArt {
    width: 85%;
  }
  .findTitBox {
    width: 100%;
  }

  .confirmBtn {
    width: 90px;
    font-size: 13px;
  }

  .findTitBox .findSubTxt {
    font-size: 13px;
    line-height: 18px;
  }

  .findTit {
    font-size: 13px;
  }

  .findCheckBox {
    gap: 15px
  }

  .infoCheckBox {
    font-size: 13px;
  }

  .findIdBox {
    font-size: 15px;
  }
}
