.area {
    padding : 125px 103px 100px;
}

.register-logo{
    margin-bottom: 58px;
    display: flex;
    justify-content: center;
}

.register-description{
    font-size: 12px;
    text-align: center;
    color: #555;
    margin-bottom: 15px;
}

.social-service_wrap{
    width: 300px;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.social-service_item{
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background-color: #adadad;
}

.social-service_icon{
    display: none;
}

.social-service_name{
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    position: relative;
}

.social-service_item .social-service_name::after{
    position: absolute;
    content: '';
    width: 14px;
    height: 14px;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.social-service_item.google{
    background-color: #ffffff;
    border: solid 1px #e6e6e6;
}

.social-service_item.google .social-service_name{
    color: #555;
}

.social-service_item.google .social-service_name::after{
    background: url(https://www.snapbeatz.co.kr/storage/asset/group/social/icon-google_mobile.png) no-repeat;
    background-size: contain;
}

.social-service_item.naver{
    background-color: #03c75a;
}

.social-service_item.naver .social-service_name{
    color: #fff;
}

.social-service_item.naver .social-service_name::after{
    background: url(https://www.snapbeatz.co.kr/storage/asset/group/social/icon-naver_mobile.svg) no-repeat;
    background-size: contain;
}

.social-service_item.kakao{
    background-color: #fee500;
}

.social-service_item.kakao .social-service_name{
    color: #392020;
}

.social-service_item.kakao .social-service_name::after{
    background: url(https://www.snapbeatz.co.kr/storage/asset/group/social/icon-kakao_mobile.svg) no-repeat;
    background-size: contain;
}

@media (max-width: 971px){
    .area {
        width: 100%;
        padding : 172px 30px 0;
    }

    .social-service_wrap{
        width: 100%;
    }
}