/* 로그인 */

body::-webkit-scrollbar {
  background-color: #d6d6d6;
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background-color: #9247EE;
  border-radius: 50px;
}

.loginArt {
  width: 80%;
  flex: 1;
  margin: 80px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loginBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.loginList {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.idBox input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border: 1px solid var(--borderLine);
  padding: 0 10px;
  border-radius: 5px;
  background-color: var(--whiteColor);
  color: var(--titColor);
  font-size: 13px;
}

.passwordBox {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.passwords {
  display: flex;
}

.passwordBox input {
  width: 90%;
  height: 40px;
  line-height: 40px;
  border-top: 1px solid var(--borderLine);
  border-left: 1px solid var(--borderLine);
  border-bottom: 1px solid var(--borderLine);
  border-right: 0;
  padding: 0 10px;
  border-radius: 5px 0 0 5px;
  background-color: var(--whiteColor);
  color: var(--titColor);
  font-size: 13px;
}

.eyeBox {
  width: 10%;
  height: 40px;
  background-color: var(--borderBack);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--borderLine);
  border-right: 1px solid var(--borderLine);
  border-bottom: 1px solid var(--borderLine);
  color: var(--txtGColor);
  font-size: 18px;
  cursor: pointer;
  background-color: var(--whiteColor);
  border-radius: 0 5px 5px 0;
}
.eyeBox .xi-eye {
  display: none;
}

/* 로그인 확인 */
.loginCheck {
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.loginCheckTxt {
  font-size: 13px;
  font-weight: 500;
  color: var(--warningColor);
}

/* 로그인 버튼 */
.loginInputBtn {
  width: 50%;
  height: 40px;
  border: 1px solid var(--borderLine);
  background-color: var(--mainColor);
  border-radius: 5px;
  font-size: 15px;
  color: var(--whiteColor);
  cursor: pointer;
  font-weight: 700;
}
.loginInputBtn:hover {
  background-color: var(--hoverColor);
}

.joinBtn {
  width: 50%;
  height: 40px;
  background-color: var(--borderBack);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border: 1px solid var(--borderLine);
  color: var(--txtColor);
  font-weight: 700;
}
.joinBtn:hover {
  background-color: var(--anColor);
}


/* 아이디 찾기/비밀번호 찾기 */
.findBtns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.findBtns > a {
  font-size: 15px;
  color: var(--txtColor);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.findBtns > a:first-child::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 15px;
  background-color: #555;
}


.pageReviewBox {
  width: 1300px;
  margin: 50px auto 60px;
}

@media screen and (max-width: 1300px) { 
  .pageReviewBox {
    width: 90%;
  }
}

/* 반응형 */
@media screen and (max-width: 600px) {   
  .loginList {
    width: 300px;
  }
} 

@media screen and (max-width: 500px) {    
  .idBox input {
    font-size: 13px;
  }
  .passwordBox input {
    font-size: 13px;
  }
  .eyeBox {
    font-size: 16px;
  }
  .loginCheck {
    height: 30px;
    line-height: 30px;
  }
  .loginCheckTxt {
    font-size: 13px;
  }
  .loginInputBtn {
    font-size: 13px;
  }
  .joinBtn {
    font-size: 13px;
  }

  .loginBox {
    gap: 40px;
  }
  .findBtns > a {
    font-size: 13px;
  }
  .findBtns > a:first-child::after {
    height: 13px;
  }
}
