/* BASIC css start */

/* 회원혜택 가입 버튼 */
.member-benefit-btn {
  width: 100%;
  max-width: 416px;
  margin: 35px auto 0;
}

.member-benefit-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  box-sizing: border-box;
  border-radius: 999px;
  background: #18358f;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease;
}

.member-benefit-btn a:hover {
  background: #122d7d;
}


/* 모바일 */
@media (max-width: 767px) {
  .member-benefit-btn {
    max-width: none;
    margin-top: 20px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .member-benefit-btn a {
    height: 50px;
    font-size: 15px;
  }
}
/* BASIC css end */

