/* 로그인 */

.frame {
  padding: 0;
}

.loginArt {
  width: 80%;
  flex: 1;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px
}

.loginLogo {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.loginLogo > p {
  font-size: 19px;
  color: var(--mainColor);
  font-weight: 700;
}

.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: 14px;
}

.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: 14px;
}

.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;
}


.loginDiv {
  height: 40px;
}

/* 로그인 버튼 */
.loginInputBtn {
  width: 100%;
  height: 40px;
  border: 1px solid var(--borderLine);
  background-color: var(--mainColor);
  border-radius: 5px;
  font-size: 15px;
  color: var(--whiteColor);
  cursor: pointer;
}
.loginInputBtn:hover {
  background-color: var(--hoverColor);
}

.goBtn {
  width: 100%;
  height: 40px;
  background-color: var(--mainColor);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: white;
}
.goBtn:hover {
  background-color: var(--hoverColor);
}

.pageReviewBox {
  width: 1300px;
  margin: 50px auto 60px;
}

.hrLine {
  width: 400px;
  border-bottom: 1px solid var(--borderLine);
  border-top: none;
  border-left: none;
  border-right: none;
}

.joinBox {
  display: flex;
  font-size: 15px;
  gap: 10px;
}

.joinTit {
  color: var(--titColor);
  font-weight: 500;
}
.joinBtn {
  text-decoration: underline;
  color: var(--txtBColor);
  font-weight: 600;
}

@media screen and (max-width: 1300px) {
  .pageReviewBox {
    width: 90%;
  }
}

/* 반응형 */
@media screen and (max-width: 600px) {
  .loginList {
    width: 300px;
  }

  .loginLogo {
    gap: 20px;
  }

  .loginLogo > p {
    font-size: 16px;
  }

  .loginArt {
    gap: 30px;
  }

  .goBtn {
    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: 12px;
  }
  .loginInputBtn {
    font-size: 13px;
  }
  .joinBtn {
    font-size: 13px;
  }

  .loginBox {
    gap: 40px;
  }
  .findBtns > a {
    font-size: 13px;
  }
  .findBtns > a:first-child::after {
    height: 12px;
  }

  .goBtn {
    font-size: 13px;
  }
}

