/* 회원가입 1 페이지 */

/* 상단배너 */
.section02 {
  background-image: url(/img/joinBanner.png);
}

.section04 {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px 0 0 0;
}

.joinIntroList {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  margin: 0 auto;
}

/* 이미지/텍스트 */
.introTopBox {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.introText {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.introTit {
  font-size: 21px;
  color: #434343;
  font-weight: 600;
}
.introTxt {
  color: #1D79E1;
  font-size: 15px;
  font-weight: 500;
}

/* 원더킹 회원가입 */
.joinBtn {
  width: 100%;
  height: 55px;
  background-color: #FF9D00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.lineBox {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.lineHr {
  flex: 1;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px dotted #ddd;
}

.lineBox span {
  color: #999;
  font-size: 14px;
  font-weight: 500;
}

.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%;
}

.introImg {
  max-width: 400px;
  width: 100%;
}
.introImg > img {
  width: 100%;
}

@media screen and (max-width: 800px) {
  .section04 {
    height: 100vh;
    margin-top: 65px;
  }

  .joinIntroList {
    width: 90%;
    gap: 30px;
  }
  .lineBox span {
    font-size: 13px;
  }

  .joinBtn {
    height: 50px;
    font-size: 14px;
  }
  .snsLogin {
    height: 50px;
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .introTopBox {
    width: 80%;
    max-width: 400px;
  }

  .introText {
    gap: 10px;
  }
  .introTit {
    font-size: 18px;
  }
  .introTxt {
    font-size: 14px;
  }

  .joinBtn {
    width: 100%;
    height: 45px;
  }

  .lineBox {
    width: 100%;
  }

  .snsLoginList {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .introTit {
    font-size: 17px;
  }
}
