/* 자동로그인 */

label.auto_login {
  display: flex;
  gap: 4px; 
  font-weight: 500;
  cursor: pointer;
  align-items: center;
}

label.auto_login input[type="checkbox"] {
  display: none;
}

label.auto_login > span {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-color3);
}

label.auto_login > svg.on {
  display: none;
}

label.auto_login.on > svg.on {
  display: block;
}

label.auto_login.on > svg.off {
  display: none;
}

label.auto_login.on > span {
  font-weight: 600;
  color: var(--main-color);
}


/* 로그인 섹션 */
.content_type03 {
  padding-top: 10px;
}
.content_type03 h2 {
  margin-bottom: 25px;
}

.btn_area{
  margin-top: 16px;
}

.pwMem_area {
  color: #999;
  margin-top: 22px;
  text-align: center;
}

.pwMem_area > span {
  font-size: 0.875rem;
}

.pwMem_area > span + span {
  margin-left: 15px;
  padding-left: 18px;
  background: url(common/images/divider_bar.svg) no-repeat left center;
}

.input_type01 input[type=password] {
  margin-bottom: 16px;
}

/* SNS 로그인 섹션 */
.sns_login {
  margin-top: 50px;
}

.sns_login > button + button {
  margin-top: 10px;
}

.sns_login button {
  width: 100%;
  height: 48px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
}

.sns_login .kakao_login {
  background: #FEE500 url(common/images/kakao_login_icon.svg) no-repeat 15px center;
  color: #333;
}

.sns_login .naver_login {
  background: #3DB15B url(common/images/naver_login_icon.svg) no-repeat 15px center;
  color: #fff;
}

.sns_login .apple_login {
  background: #000 url(common/images/apple_login_icon.svg) no-repeat 22px center;
  color: #fff;
  margin-top: 20px;
}