/* CSS reset 추가X */
html {
    overflow-y: scroll;
    background-color: #fff;
}

body, table, input, select, textarea, button, a, p, div, span {
    font-family: "Preten",Sans-serif;
    /* font-family: "￿￿: ￿￿","Malgun Gothic","Apple SD Gothic Neo","Dotum",Helvetica,Sans-serif;*/
    /*'Noto Sans KR', 'Noto Sans', sans-serif, NanumBarungothic*/;
    /*font-weight:300;*/
}

a {
    text-decoration: none
}


/*20190923로그인팝업*/
.LoginPop {
    padding: 0 5px;
    margin-top: 0px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fafafa;
    z-index: 999999;
}

.LoginPopbg {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 8px 0 #ccc;
    padding: 20px 20px 30px;
    position: relative;
    top: 5px;
}

.LoginPop h1 {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin: 20px 0 20px;
}

.LoginPop input {
    border: 2px solid #ddd;
    height: 40px;
    line-height: 30px;
    padding: 5px;
    width: 60%;
    margin-bottom: 10px;
    font-size:18px;
    font-weight:600;
    text-align:center;
    color:black;
}

.LoginPop .notice01 {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.LoginPop .notice02 {
    color: #df1f00;
    font-size: 14px;
}

.btnLoginArea {
    overflow: hidden;
    /* width: 100%; */
    display: flex;
    justify-content:space-between;
}


    .btnLoginArea a {
        width: 49%;
        line-height: 45px;
        text-align: center;
        font-weight: 500;
        color: #fff;
    }

a.cancelBtn {
    background: #333;
}

a.checkBtn {
    background: #1176dd;
    margin-left: 10px;
}

.popCloseBtn {
    position: absolute;
    top: 15px;
    right: 15px;
}










