/* 로그인 */

/* 텍스트 타이틀 영역 */
.loginTitArt {
  width: 70%;
  max-width: 1400px;
  margin: 100px auto 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loginTitArt > p:first-child {
  color: var(--titColor);
  font-size: 24px;
  font-weight: 700;
}
.loginTitArt > p:nth-child(2) {
  color: var(--txtColor);
  font-size: 16px;
  font-weight: 400;
}

/* 로그인/회원가입 메뉴 영역 */
.menusArt {
  width: 70%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divMenus {
  display: flex;
}

.divMenu {
  background-color: var(--whiteColor);
  width: 240px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-bottom: 2px solid var(--backColor1);
}
.divMenu > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txtColor);
  font-weight: 500;
}
.divMenu.on {
  background-color: var(--whiteColor);
  border-bottom: 2px solid var(--mainColor);
}
.divMenu.on > a {
  color: var(--mainColor);
}

/* 로그인 영역 */
.loginArt {
  width: 70%;
  max-width: 1400px;
  margin: 0 auto;
  flex: 1;
}

/* 로그인 박스 */
.loginBox {
  width: 480px;
  border-bottom: 1px solid var(--backColor1);
  border-left: 1px solid var(--backColor1);
  border-right: 1px solid var(--backColor1);
  padding: 20px;
  margin: 0 auto;
}

.loginList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 아이디 영역 */
.idBox input {
  width: 100%;
  height: 40px;
  background-color: var(--backColor1);
  border: none;
  padding: 0 10px;
  font-size: 14px;
}

/* 비밀번호 영역 */
.passwords {
  display: flex;
  align-items: center;
}

.passwords input {
  width: 90%;
  height: 40px;
  background-color: var(--backColor1);
  border: none;
  padding: 0 10px;
  font-size: 14px;
}

.eyeBox {
  width: 10%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--backColor1);
  padding: 10px;
  cursor: pointer;
}

.eyeBox > div {
  width: 22px;
  height: 22px;
}


.eyeOnBox {
  display: none;
}

/* 로그인 체크 */
.loginCheck {
  text-align: center;
  font-size: 14px;
  line-height: 40px;
  color: var(--redColor);
}

.loginCheckTxt {
  visibility: hidden;
}

/* 로그인 버튼 */
.loginBtn {
  width: 100%;
  height: 40px;
  border: none;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  font-weight: 600;
}

/* 아이디/비밀번호 찾기 */
.findBtns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.findBtns a {
  font-size: 14px;
  color: var(--titColor);
  font-weight: 500;
}

.findBar {
  width: 2px;
  height: 12px;
  background-color: var(--txtColor);
}

/* 반응형 */
@media screen and (max-width: 1000px) {
  .loginTitArt > p:first-child {
    font-size: 20px;
  }
  .loginTitArt > p:nth-child(2) {
    font-size: 14px;
  }
}

@media screen and (max-width: 800px) {
  .loginTitArt {
    margin: 60px auto 40px
  }

  .divMenu {
    width: 200px;
    height: 40px;
  }
  .loginBox {
    width: 400px;
  }

  .loginTitArt > p:first-child {
    font-size: 17px;
  }
  .loginTitArt > p:nth-child(2) {
    font-size: 13px;
  }
}

@media screen and (max-width: 600px) {
  .loginTitArt {
    width: 85%;
    margin: 50px auto 30px;
    gap: 6px;
  }
  .menusArt {
    width: 85%;
  }
  .loginArt {
    width: 85%;
  }
  .loginBox {
    width: 100%;
    padding: 15px 10px;
  }
  .divMenus {
    width: 100%;
  }
  .divMenu {
    width: 50%;
  }
  .idBox input {
    height: 35px;
    font-size: 13px;
  }
  .passwords input {
    flex: 1;
    height: 35px;
    font-size: 13px;
  }
  .eyeBox {
    width: 35px;
    height: 35px;
    padding: 10px;
  }

  .loginCheck {
    line-height: 30px;
  }
  .findBtns {
    margin: 30px auto 50px;
  }
}