/* 청소매니저 - 로그인 */

header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.frameInner {
  gap: 20px;
}


.logo {
  height: 30px;
  margin: 0 auto;
}

.logo > img {
  width: auto;
  height: 100%;
}

.loginFrame {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 로그인 상단 영역 */
.loginTopArt {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0 0 0;
}

/* 이미지 영역 */
.loginCateBox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column-reverse;
}

.loginCateImgs {
  width: 100px;
}

.loginCateTit {
  font-size: 18px;
  line-height: 28px;
  color: var(--titColor);
  font-weight: 500;
}
.loginCateTit > span {
  font-weight: 700;
}

/* 카테고리 메뉴 */
.loginMenus {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin: 0 auto;
  font-size: 14px;
  gap: 10px;
}
.loginMenus > li {
  width: 125px;
  height: 38px;
  background-color: var(--whiteColor);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--borderLine);
}

.loginMenus > li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt9Color);
  font-weight: 500;
  gap: 5px;
}

.loginMenus > li.on {
  background-color: white;
  border: 1px solid var(--mainColor);
}
.loginMenus > li.on > a {
  color: var(--mainColor);
}
.loginMenus > li.on > a svg {
  fill: var(--mainColor);
}

.loginIcon {
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 로그인 내용 영역 */
.loginBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loginList {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 아이디 영역 */
.idBox {
  width: 100%;
  height: 45px;
}
.idBox input {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
  padding: 0 10px;
  font-size: 14px;
  border: 1px solid var(--borderLine);
}
.idBox input:focus {
  border: 1px solid var(--mainColor);
}

.passwordBox {
  width: 100%;
  height: 45px;
  display: flex;
  border-radius: 5px;
  border: 1px solid var(--borderLine);
}

.passwords {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px 0 0;
  gap: 10px;
}

.passwords input {
  flex: 1;
  height: 100%;
  background-color: transparent;
  border: none;
  font-size: 14px;
  padding: 0 10px;
}
.passwordBox:has(.passwords input:focus) {
  border: 1px solid var(--mainColor);
}
.eyeBox {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eyeOnBox {
  display: none;
}

/* 자동 로그인 */
.loginSave {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--txtColor);
  font-weight: 600;
  margin: 5px 0 0 0;
}
.loginSave input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  background-image: url(/img/manager/icon/checkOff.png);
  background-size: cover;
}
.loginSave input[type=checkbox]:checked {
  background-image: url(/img/manager/icon/checkOn.png);

}

/* 로그인 체크 */
.loginCheckTxt {
  text-align: center;
  font-size: 14px;
  color: var(--redColor);
  line-height: 40px;
  font-weight: 500;
  visibility: hidden;
}

/* 로그인 버튼 */
.bottomBtns {
  width: 100%;
  height: 45px;
}
.loginBtn {
  width: 100%;
  height: 100%;
  background-color: var(--mainColor);
  border: none;
  border-radius: 50px;
  color: var(--whiteColor);
  font-size: 14px;
  font-weight: 600;
}

.loginInnerArt {
  width: 100%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}
.findList {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  gap: 8px;
}
.findList > li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.findList > li:nth-child(2)::before {
  content: '';
  display: inline-block;
  width: 2px;
  height: 12px;
  background-color: var(--txt9Color);
  margin: 1px 0 0 0;
}

.findList a {
  color: var(--txt6Color);
  font-weight: 500;
}

/* 회원가입 */
.joinBtn {
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--mainColor);
  border-radius: 50px;
  font-size: 14px;
  gap: 5px;
  color: var(--mainColor);
  font-weight: 600;
  margin: -5px 0 0 0;
}
.joinIcon {
  width: 20px;
  height: 20px;
}