/* 아이디/비밀번호 찾기 */
.contentsArt {
  display: flex;
  flex-direction: column;
  padding: 0;
}

/* 아이디/비밀번호 찾기 구분 */
.findMenus {
  width: 100%;
  height: 50px;
  display: flex;
  position: sticky;
  top: 56px;
  background-color: white;
  z-index: 10;
  gap: 3px;
}
.findMenus > li {
  width: 50%;
  height: 100%;
  border-bottom: 2px solid var(--bottomLine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.findMenus > li > a {
  width: 100%;
  height: 100%;
  color: var(--txtGColor);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.findMenus > li.on {
  border-bottom: 2px solid var(--mainColor);
}
.findMenus > li.on a {
  color: var(--mainColor);
  font-weight: 700;
}

/* 단계 */
.stepArt {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--borderLine);
  padding: 20px 0;
}

.stepNums {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stepNum {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  border: 1px solid var(--mainColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--mainColor);
  font-weight: 600;
  background-color: white;
}
.stepNum.on {
  background: linear-gradient(to bottom, #FF7B00, #FF9F45);
  color: white;
  border: none;
}
.stepArrow {
  width: 20px;
  height: 20px;
}

/* 단계 텍스트 */
.stepText {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stepTit {
  color: var(--titColor);
  font-size: 1rem;
  font-weight: 600;
  line-height: 140%;
}

/* 입력 내용 */
.infoList {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px 16px 100px 16px;
  flex: 1;
}

/* 입력창 항목 */
.inputBox {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.875rem;
}
.inputTit {
  height: 25px;
  color: var(--titColor);
  font-weight: 500;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.inputText {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.textInput {
  width: 100%;
  display: flex;
}

.textInput input[type=text] {
  flex: 1;
  height: 40px;
  border-radius: 5px;
  border: none;
  background-color: var(--borderBack);
  border: 1px solid var(--borderLine);
  padding: 0 10px;
}

/* 사업자등록번호 */
.numInputText {
  gap: 5px;
  align-items: center;
}

.numInputText input[type=number] {
  width: 30%;
  height: 40px;
  text-align: center;
  border: 1px solid var(--borderLine);
  background-color: var(--borderBack);
  border-radius: 4px;
  font-size: 0.875rem;
}

.bizText {
  flex-direction: row;
  gap: 7px;
}

/* 하단버튼 */
.bottomBtns {
  width: 100%;
  max-width: 800px;
  padding: 16px;
  position: fixed;
  bottom: 0;
  background-color: white;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
}
.bottomBtns .nextBtn {
  width: 100%;
  border: none;
  color: white;
  background: linear-gradient(to bottom, #FF7B00, #FF9F45);
}
.bottomBtns .nextBtn:disabled {
  background: var(--disabledBack);
}

/* 찾기 완료 */
.findOk {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  padding: 0 0 65px 0;
}

.findOkImg {
  width: 100px;
}

.findOkText {
  text-align: center;
  line-height: 140%;
}
.findOkText p {
  font-size: 0.875rem;
  color: var(--titColor);
  font-weight: 600;
}

.findIdTxt {
  color: var(--mainColor);
  font-weight: 700;
  font-size: 0.9375rem;
}

.loginGoBtn {
  width: 100%;
  background: linear-gradient(to bottom, #FF7B00, #FF9F45);
  color: white;
}

.findPsTxt {
  font-size: 0.8125rem;
  color: var(--txtGColor);
  font-weight: 500;
}

/* 담당자 인증 */
.certText {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
}

.certText .textRead {
  width: 80%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid var(--borderLine);
  background-color: var(--borderBack);
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--txtColor);
  font-weight: 600;
}

.certBtn {
  width: 70px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mainColor);
  border-radius: 5px;
  color: white;
  font-weight: 600;
}

.numInputText .textRead {
  width: 30%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid var(--borderLine);
  background-color: var(--borderBack);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--txtColor);
  font-weight: 600;
}

/* 비밀번호 변경 */
.passwordText {
  flex-direction: column;
  align-items: start;
}

.passwordInputs {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid var(--borderLine);
  border-radius: 5px;
  background-color: var(--borderBack);
  padding: 0 5px;
}
.passwordInputs input {
  flex: 1;
  height: 40px;
  border: none;
  padding: 0 5px;
  border-radius: 5px;
  background-color: transparent;
}

.eyeBox {
  width: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.eyeBox > div {
  width: 20px;
  height: 20px;
}
.eyeOnBox {
  display: none;
}

/* 비밀번호 체크 */
.pwCheck {
  display: none;
}

.pwCheckNot {
  color: var(--redColor);
  font-weight: 500;
}

/* 비밀번호 확인 체크 */
.pwSameCheck {
  display: none;
}