.sub_content_wrap {
  width: 100%;
  background-color: var(--black_1500);
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
  margin-bottom: 0;
}

.user_wrap {
  width: 360px;
  min-height: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 68px 0;
}

.user_wrap .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.user_wrap .title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--black_100);
}
.user_wrap .title p {
  font-size: 16px;
  color: var(--black_500);
  text-align: center;
}

.user_wrap .btn_box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.user_wrap .btn_box button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.user_wrap .btn_box button i {
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.user_wrap .btn_box button .ic_kakao {
  background-image: url(../img/ic_kakao.svg);
}
.user_wrap .btn_box button .ic_naver {
  background-image: url(../img/ic_naver.svg);
}
.btn_md_yellow {
  display: inline-flex;
  padding: 24px 36px;
  justify-content: center;
  background-color: #FAE100;
  color: #161616;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
}

.btn_md_green {
  display: inline-flex;
  padding: 24px 36px;
  justify-content: center;
  background-color:  #57BA53;
  color:  #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
}