/* 아이디/비밀번호 찾기 공통 */

.findArt {
  /* display: flex; */
  flex-direction: column;
  flex: 1;
  padding: 20px 0;
  display: none;
}

.findArt.on {
  display: flex;
}

/* 문구 */
.findTxt {
  font-size: 20px;
  line-height: 28px;
  color: var(--titColor);
  font-weight: 500;
}
.findTxtBold {
  font-weight: 700;
}

/* 휴대전화 본인인증 */
.findPhone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.phoneIcon {
  margin: 0 auto;
  width: 45%;
}

.findPhoneTxt {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.phoneTit {
  font-size: 18px;
  color: var(--txtColor);
  font-weight: 700;
}
.phoneTxt {
  font-size: 14px;
  color: var(--txtColor);
  line-height: 22px;
  font-weight: 500;
}

/* 버튼 */
.confirmBtn {
  width: 100%;
  height: 45px;
  background-color: var(--mainColor);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--whiteColor);
  font-weight: 500;
}

/* 아이디 찾기 완료 */
.findIdList {
  flex: 1;
  display: flex;
  justify-content: center;
  text-align: center;
}

.findIdBox {
  width: 100%;
  height: 160px;
  background-color: var(--backColor1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 30px 0 0 0;
  gap: 10px;
  border-radius: 10px;
}

.findIdTxt {
  font-size: 18px;
  color: var(--mainColor);
  font-weight: 500;
}

.findDaysTxt {
  font-size: 14px;
  color: var(--txtColor);
  font-weight: 600;
}

.findPsTxt {
  font-size: 13px;
  color: var(--txt6Color);
  margin: 10px 0 0 0;
  font-weight: 500;
}

/* 비밀번호 찾기 버튼 */
.findPwBtn {
  font-size: 14px;
  text-align: center;
  margin: 0 0 15px 0;
  color: var(--txtColor);
  font-weight: 600;
  text-decoration: underline;
}

/* 비밀번호 아이디 입력 */
.pwIdArt {
  flex-direction: column;
  gap: 20px;
}

.findInputId {
  width: 100%;
  height: 45px;
  margin: 10px 0 0 0;
}

.findInputId > input {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  padding: 0 10px;
  border: 1px solid var(--borderLine);
}
.findInputId > input:focus {
  border: 1px solid var(--mainColor);
}

/* 비밀번호 입력 */

.pwInputArt {
  gap: 20px;
}

.eyeBox {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eyeOnBox {
  display: none;
}

/* 아이디 표출/비밀번호 입력 */
.pwsDiv {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* 아이디 표출 */
.idViewBox {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.viewTit {
  width: 70px;
  text-align: left;
  color: var(--txtColor);
  font-weight: 500;
}

.viewTxt {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--txtColor);
  font-weight: 600;
}

.pwsInputs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 비밀번호 입력 */
.passwordBox {
  height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid var(--borderLine);
  border-radius: 5px;
  padding: 0 10px;
}
.passwordBox input {
  flex: 1;
  height: 100%;
  background-color: transparent;
  border: none;
  font-size: 14px;
}

.passwordBox:has(input:focus) {
  border: 1px solid var(--mainColor);
}

.pwPsTxt {
  font-size: 12px;
  margin: 8px 0 0 0;
  color: var(--txt9Color);
  padding: 0 0 0 10px;
  font-weight: 500;
}

/* 비밀번호 일치 체크 */
.pwCheckBox {
  margin: 20px 0 0 0;
  text-align: center;
  font-size: 14px;
}

.pwCheckTxt {
  color: var(--redColor);
  line-height: 22px;
  font-weight: 500;
  visibility: hidden;
}


