/* Google web font CDN*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700&display=swap');

* {
    box-sizing: border-box;
    /*전체에 박스사이징*/
    outline: none;
    /*focus 했을때 테두리 나오게 */
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    background-color: #f5f6f7;
    line-height: 1.5em;
    color: #222;
    margin: 0;
}

a {
    text-decoration: none;
    color: #222;
}

/*member sign in*/
.member {
    width: 400px;
    /* border: 1px solid #000; */
    margin: auto;
    /*중앙 정렬*/
    padding: 0 20px;
    margin-bottom: 20px;
}

.member .logo {
    /*로고는 이미지라 인라인 블록이니까 마진 오토 안됨 블록요소만 됨
    display: block;
    margin :50px auto;*/

    z-index: 12;
    white-space: nowrap;
    font-size: 30px;
    font-weight: 400;
    color: #1b1819;
    letter-spacing: 0px;
    font-family: "Work Sans";
    visibility: inherit;
    transition: none 0s ease 0s;
    text-align: inherit;
    border-width: 0px;
    margin: 0px;
    padding: 0px;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: 50% 50% 0px;

}

.member .bold {
    font-weight: 700;
}

.member .field {
    margin: 5px 0;
    /*상하로 좀 띄워주기*/
}

.member b {
    /* border: 1px solid #000; */
    display: block;
    /*수직 정렬하기 */
    margin-bottom: 5px;
}

/*input 중 radio 는 width 가 100%면 안되니까 */
.member input:not(input[type=radio]),
.member select {
    border: 1px solid #dadada;
    padding: 15px;
    width: 100%;
    margin-bottom: 5px;
}

.member input[type=button],
.member input[type=submit] {
    background-color: #4689ef;
    color: #fff
}

.member input:focus,
.member select:focus {
    border: 1px solid #4689ef;
}

.field.birth div {
    /*field 이면서 birth*/
    display: flex;
    gap: 10px;
    /*간격 벌려줄때 공식처럼 사용핟나 */
}


.field.tel-number div {
    display: flex;
}

.field.tel-number div input:nth-child(1) {
    flex: 2;
}

.field.tel-number div input:nth-child(2) {
    flex: 1;
}

.field.gender div {
    border: 1px solid #dadada;
    padding: 15px 5px;
    background-color: #fff;
}

.placehold-text {
    display: block;
    position: relative;
    /* border: 1px solid #000; */
}

.placehold-text:before {
    content: "";
    position: absolute;
    /*before은 inline 요소이기 때문에 span으로 감싸줌 */
    right: 20px;
    top: 13px;
    pointer-events: none;
    /*자체가 가지고 있는 pointer event 를 없애준다 */
}

.userpw {
    background: url(./images/images2/icon-01.png) no-repeat center right 15px;
    background-size: 20px;
    background-color: #fff;
}

.userpw-confirm {
    background: url(./images/images2/icon-02.png) no-repeat center right 15px;
    background-size: 20px;
    background-color: #fff;
}

.member-footer {
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
}

.member-footer div a:hover {
    text-decoration: underline;
    color: #2db400
}

.member-footer div a:after {
    content: '|';
    font-size: 10px;
    color: #bbb;
    margin-right: 5px;
    margin-left: 7px;
    /*살짝 내려가 있기 때문에 위로 올려주기 위해 transform 사용하기*/
    display: inline-block;
    transform: translateY(-1px);

}

.member-footer div a:last-child:after {
    display: none;
}

@media (max-width:768px) {
    .member {
        width: 100%;
    }
}

/* Google web font CDN*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700&display=swap');

* {
    box-sizing: border-box;
    /*전체에 박스사이징*/
    outline: none;
    /*focus 했을때 테두리 나오게 */
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    background-color: #f5f6f7;
    line-height: 1.5em;
    color: #222;
    margin: 0;
}

a {
    text-decoration: none;
    color: #222;
}

.member {
    width: 400px;
    /* border: 1px solid #000; */
    margin: auto;
    /*중앙 정렬*/
    padding: 0 20px;
    margin-bottom: 20px;
}

.member .logo {
    /*로고는 이미지라 인라인 블록이니까 마진 오토 안됨 블록요소만 됨 */
    display: block;
    margin: 50px auto;
}

.member .field {
    margin: 5px 0;
    /*상하로 좀 띄워주기*/
}

.member b {
    /* border: 1px solid #000; */
    display: block;
    /*수직 정렬하기 */
    margin-bottom: 5px;
}


.error {
    margin-top: 20px;
    margin-bottom: 20px;
    color: red;
}