body{
    background-color: #eee;
}
.logo{
    text-align: center;
    /* margin: 50px auto; */
    display: block;
    /* width: 184px; */
    /* height: 35px; */
    margin-top: 80px;
}

#content{
    width: 750px; margin: 20px auto;
    background: #fff; border-radius: 10px;
    padding: 70px;
    font-family: 'Noto Sans KR', sans-serif;
}

.member_tab{
    padding: 30px 0;
    border-top: 1px solid #333;
}

.member_tab a{
    font-size: 1.33rem;
    padding: 10px;
    margin: 0 10px;color: #aaa;
}

.member_tab a.on{
    color: #fff;
    border-bottom: 2px solid #333;
    font-weight: bold;
}

.member_tab span{
    font-size: 24px;
    padding: 10px;
    margin: 0 10px;
    color: #fff;
    font-weight: bold;
}

.join{
    text-align: left;
    position: relative;
}
.join h4{
    font-size: 20px;
    margin: 30px 0;
    color: #333;
}
.join h3{
    font-size: 28px;
    color: #333;
    margin-left: 42%;
    position: relative;
}


.join .policy{
    padding: 10px; overflow-y: scroll;
    height: 80px; margin: 20px 0;
    border: 1px solid #ddd;
    background: #fff;
    font-size: .78rem;
    line-height: 1.5rem;
}
.join .check{
    color: #333; margin: 20px 0 60px;
}
.join .button{
    text-align: center;
    margin-top: 30px
}
.join .button .ok,.join .button button,.join .allcheck{
    display: inline-block;
    width: 300px;
    line-height: 50px; height: 50px;
    padding: 8px 0;border: none;
    background: #007AC3;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 7px;
}

.join .button .cancel{
    display: inline-block;
    width: 200px;
    line-height: 24px;
    padding: 8px 0;
    border: none;
    background: #999;
    color: #fff;font-size: .78rem;
    cursor: pointer;
}
.join .allcheck{
    /* background: transparent; */
    border: 1px solid #007AC3;
    color: #007AC3;
    background: #f3f3f3;

} 

/* 체크박스 UI변경 */
input[type=checkbox] + label::before {           /* + => 친구라는 의미 */
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 1px solid #999;
    content: '';
    margin: 0px 15px -6px 0px;
}
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label {
    cursor: pointer;
}
/* 체크박스타입의 인풋이 :checked  => 체크되면 + 라벨의 비포*/
input[type=checkbox]:checked + label::before {
    background: #fff url(../images/checked_bg.png) center center no-repeat;
    border: 1px solid #e3e9fe;
}