/* 로그인 페이지 */

/* 상단배너 */
.section02 {
  background-image: url(/img/joinBanner.png);
}

.section04 {
  padding-top: 80px;
  padding-bottom: 120px;
}

.loginList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.loginTitleBox {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
}

.leftImg {
  width: 180px;
}
.leftImg > img {
  width: 100%;
}

.rightImg {
  width: 180px;
}
.rightImg > img {
  width: 100%;
}

.loginLogos {
  width: 200px;
}
.loginLogos > img {
  width: 100%;
}


.login_input{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  gap: 10px;
}

.login_input input{
  background-color: transparent;
  border: none;
  padding-left: 8px;
  margin-top: 0;
  width: 100%;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
}

.loginInputBox {
  height: 55px;
  display: flex;
  align-items: center;
  background-color: #FAFAFA;
  border: 1px solid #DFDDDD;
  border-radius: 5px;
}
.loginTit {
  display: inline-flex;
  width: 100px;
  padding: 0 10px;
  color: #A0A0A0;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.loginBtn{
  width: 100%;
  height: 55px;
  cursor: pointer;
  background-color: #FF9D00;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  color: white;
}

.loginPopClose {
  width: 100%;
  display: flex;
  justify-content: end;
  padding: 0 15px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: -10%;
}
.loginClose {
  width: 40px;
  height: 40px;
}
.loginClose > img {
  width: 100%;
  height: 100%;
}

.btnList {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.btnListBottom {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.joinBtn {
  width: 50%;
  height: 55px;
  border: 1px solid #707070;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #707070;
  font-weight: 600;
}
.findBtn {
  width: 50%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1D79E1;
  border-radius: 50px;
  color: white;
  font-weight: 500;
  font-size: 15px;
}

.loginInputList {
  max-width: 500px;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.snsLoginList {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.snsLogin {
  width: 100%;
  height: 55px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #767678;
  font-weight: 500;
  gap: 5px;
}
.snsLogin > img {
  width: 100%;
  height: 100%;
}

.snsIcon {
  width: 20px;
  height: 20px;
}
.snsIcon img {
  width: 100%;
  height: 100%;
}

.passwordIcon {
  display: flex;
  margin: 0 10px 0 0;
  cursor: pointer;
}
.passwordOff {
  display: none;
}

.loginPwCheck {
  font-size: 14px;
  display: none;
  align-items: center;
  color: #FF5B19;
  font-weight: 500;
  height: 30px;
}

.lineHr {
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px dotted #ddd;
}

.loginForm {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {

  .loginTitleBox {
    width: 90%;
  }

  .leftImg, .rightImg {
    width: 32.5%;
  }
  .loginLogos {
    width: 35%;
  }

  .loginForm {
    width: 90%;
  }

  .loginInputList {
    width: 100%;
  }


  .loginInputBox {
    height: 50px;
  }

  .snsLogin {
    height: 50px;
  }
  
  .loginBtn, .joinBtn, .findBtn {
    height: 50px;
  }

  .section04 {
    height: 100vh;
    margin-top: 65px;
  }
}

@media screen and (max-width: 600px) {
  .loginTit {
    width: 80px;
  }


  .loginList {
    gap: 30px;
  }

}

@media screen and (max-width: 400px) {
  .loginLogos {
    width: 30%;
  }
  .leftImg, .rightImg {
    width: 35%;
  }

  .loginTitleBox {
    gap: 5px;
  }
}