/* 로그인 페이지 */

.frame {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frameInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* 로그인 상단 영역 */
.loginTopArt {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.logo {
  height: 40px;
}
.logo > img {
  width: auto;
  height: 100%;
}
.loginTit {
  color: var(--titColor);
  font-size: 0.9375rem;
  font-weight: 600;
}

/* 로그인 내용 영역 */
.loginBox {
  width: 300px;
  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: 40px;
}
.idBox input {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
  padding: 0 10px;
  font-size: 0.875rem;
  background-color: var(--borderBack);
  border: 1px solid var(--borderLine);
}
.idBox input:focus {
  border: 1px solid var(--mainColor);
}

/* 비밀번호 영역 */
.passwordBox {
  width: 100%;
  height: 40px;
  display: flex;
  border-radius: 5px;
  border: 1px solid var(--borderLine);
  background-color: var(--borderBack);
}
.passwords {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: transparent;
}
.passwords input {
  width: 260px;
  height: 100%;
  background-color: transparent;
  border: none;
  font-size: 0.875rem;
  padding: 0 0 0 10px;
}
.passwordBox:has(.passwords input:focus) {
  border: 1px solid var(--mainColor);
}

.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;
}

/* 자동 로그인 */
.loginSave {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: var(--titColor);
  font-weight: 600;
  cursor: pointer;  
}
.loginSave input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  background-image: url(/img/icon/checkOff.png);
  background-size: cover;
  cursor: pointer;
}
.loginSave input[type=checkbox]:checked {
  background-image: url(/img/icon/checkOn.png);
}
.loginSave label {
  cursor: pointer;
}

/* 로그인 체크 */
.loginCheckTxt {
  text-align: center;
  font-size: 0.875rem;
  color: var(--redColor);
  font-weight: 500;
  margin: 10px 0;
}

/* 로그인 버튼 */
.bottomBtns {
  width: 100%;
  height: 45px;
}
.loginBtn {
  width: 100%;
  height: 100%;
  background-color: var(--mainColor);
  border: none;
  color: white;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.loginMore {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0 0 0;
}

.findBtn {
  font-size: 0.875rem;
  color: var(--txtGColor);
  font-weight: 600;
  text-decoration: underline;
}

/* 회원가입 */
.joinBtnMore {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 30px 0 0 0;
  gap: 15px;
}

.joinBtnMore p {
  color: var(--titColor);
  font-weight: 500;
  font-size: 0.9375rem;
}

.joinGoBtn {
  font-size: 0.875rem;
  color: var(--mainColor);
  font-weight: 600;
  text-decoration: underline;
}