input:focus {
    border: none;
    outline: none;
}

.inp_chk {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.inp_chk label {
    display: flex;
    align-items: center;
    cursor:pointer
}

.inp_chk input[type="checkbox"] {
    position: relative;
    width: 15px;
    height: 15px;
    appearance: none;
    -webkit-appearance: none;
    background-clip: content-box;
    margin: 0;
    cursor: pointer;
    background: #d5dae7;
    border: 1px solid #d5dae7;
    transition: all 0.3s ease;
}

.inp_chk input[type="checkbox"]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('/static/images/icon/icon_chk_w.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}

.inp_chk input[type="checkbox"]:checked {
    border: 1px solid #36C0FF;
}

.inp_chk input[type="checkbox"]:checked:before {
    background-color: #36C0FF;
}

.inp_chk span {
    transition: color .3s ease;
    font-size: 12px;
    margin-bottom: 0;
    margin-left: 3px;
    color: #262626;
}

.inp_form .inp_box {
    width: 350px;
    height: 40px;
}

.inp_form .inp_box input {
    width: 100%;
    height: 100%;
    border: 1px solid #d5dae7;
    box-sizing: border-box;
    padding: 10px 20px;
    font-size: 12px;
}

.inp_form .inp_box+.inp_box {
    margin-top: 10px;
}

.login_btn {
    position: absolute;
    width: 156px;
    height: 90px;
    top: 0;
    right: 0;
    text-align: center;
    align-content: center;
}

.login_box {
    max-width: 720px;
    padding: 100px;
    background: #fff;
    margin: auto;
    border: 2px solid #ececec;
}

.login_form {
    position: relative;
    display: flex;
}
.btn_w50 {
    margin-top:30px;
    display:flex;
    justify-content: center;
    gap:10px;
}
.btn_w50 .btn{
    width:auto;
    padding:10px 30px;
    display:block;
}

@media(max-width:780px){
    .login_box{
        padding:40px 20px;
    }
    .login_form{
        flex-direction: column;
    }
    .login_btn{
        position:relative;
        width:100%;
        height:50px;
        margin-top:10px;
    }
    .circle_btn{
        box-shadow: none;
    }
    .btn_w50 .btn{
        padding:6px 15px;
    }

    .inp_form .inp_box{
        width:100%;
    }
}

.agree_box {
    width:1200px;
    margin:0 auto 50px;
}
.memb_title{
    position:relative;
    /* padding-left:20px; */
    color:#262626;
    font-weight:600;
    margin-bottom:10px;
}
.memb_title:before{
    content:'';
    position:relative;
    border-left:3px solid #777;
    margin-right:8px;
    top:2px;
}
.agreementBody{
    margin-top:15px;
    height:250px;
    padding:20px;
    overflow:auto;
    border:1px solid #ccc;
    background:#fff;
}
.agreementBody p,
.agreementBody h5,
.agreementBody h4,
.agreementBody li{
    color:#45484b
}
.agreementBody p{
    font-size:13px;
    line-height:1.5em;
    padding-left:10px;
}
.agreementBody .infBox{
    text-align:right;
    font-size:12px;
}
.agreementBody h5{
    text-align:left;
    margin:20px 0;
    font-weight:600;
    font-size:15px;
}
.agreementBody h4{
    width:100%;
    display:inline-block;
    font-size:inherit;
    font-weight:500;
    line-height:32px;
    margin-bottom:.5em;
}
.agreementBody .sc_ptop{
    text-align:right;
    line-height:normal;
    font-size:13px;
}
.agreementBody .sc_ptop a{
    display:inline-block;
    padding:5px 8px;
    background:#999;
    border-radius:3px;
    margin-right:8px;
    text-decoration: none;
    font-size:13px;
    color:#fff;
    color:#45484b;
}
.agreementBody ol li{
    margin-top:10px;
    padding-left:10px;
    line-height: 1.4em;
    font-size:15px;
    color:#45484b;
}

@media(max-width:10240px){
    .agree_box{
        width:100%;
    }
    .agreementBody{
        padding:15px;
    }
}

/* 회원가입 폼 */
.join_form_div{
    padding:20px;
    background:#fff;
    border:1px solid #ccc;
    margin:15px 0 40px;
    border-radius: 3px;
}
.join_form_div input[type="text"],
.join_form_div input[type="password"],
.join_form_div button{
    vertical-align: middle;
    display:inline-block;
    box-sizing: border-box;
}

.join_form_div .inp_form {
    align-items: flex-start;
    padding:8px 0;
    border-top:1px solid #f0f0f0;
}
.join_form_div .inp_form:first-child{
    border-top:0;
}
.join_form_div .inp_form .text_area{
    display:table;
}
.join_form_div .inp_form .text_area p{
    display:table-cell;
    width:150px;
    height:40px;
    padding:0 4px;
    vertical-align: middle;
}
.join_form_div .inp_form .text_area p i{
    color:red;
    font-size:15px;
    margin-left:3px;
}
.join_form_div .inp_form .inp_area input[type="text"],
.join_form_div .inp_form .inp_area input[type="password"],
.join_form_div .inp_form .inp_area select{
    height:40px;
    padding:0 8px;
    border:1px solid #ddd;
    background:#fafafa;
    font-size:13px;
    box-sizing: border-box;
}
.join_form_div .inp_form .inp_area button{
    width:110px;
    height: 40px;
    padding:0 8px;
    border:1px solid #ddd;
    background:#f0f0f0;
    font-size:13px;
    white-space: nowrap;
}
.join_form_div .inp_form .inp_area .info{
    font-size:inherit;
    color:#999;
    line-height: 1.3;
    margin:3px 0;
}
.birth_area{
    display:flex;
}
.birth_area > div{
    display:table-cell;

}
.reg_birth label{
    position:relative;
    display:table-cell;
}
.reg_birth label input[type="radio"]{
    appearance: none;
    min-width:80px;
    height:40px;
    border:1px solid #999;
    background:#fff;
    text-align:center;
    cursor:pointer;
    vertical-align: middle;
    margin:0;
}
.reg_birth label input[type="radio"]:checked{
    background:#999;
    border-color:transparent;
}
.reg_birth label span{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    font-size:13px;
    color:#999;
}
.reg_birth label input[type="radio"]:checked + span{
    color:#fff
}
.data_slt{
    margin-left: 8px;
}
.data_slt span{
    font-size:13px;
}
.data_slt .sign{
    margin:0 5px;
}
.addr{
    margin-top:5px;
}
@media(max-width:780px){
    .join_form_div{
        padding:15px 10px;
    }
    .join_form_div .inp_form {
        flex-direction: row;
    }
    .join_form_div .inp_form .text_area p{
        width:80px;
        font-size:13px;
    }
    .join_form_div .inp_form .inp_area{
        width:calc(100% - 80px);
    }
    .join_form_div .inp_form .inp_area .reg_member{
        display:flex;
        gap:5px;
    }
    .join_form_div .inp_form .inp_area .reg_member input{
        width:100%;
    }
    .join_form_div .inp_form .inp_area .info{
        font-size:13px;
    }
    .join_form_div .inp_form .inp_area .reg_password{
        font-size:13px;
    }
    .birth_area{
        flex-direction: column;
    }
    .data_slt{
        margin-top:8px;
        margin-left:0;
    }
    .addr input[type="text"]{
        width:100%;
    }
    .addr input[type="text"] + input[type="text"]{
        margin-top:5px;
    }
}

/* 개인정보, 이용약관 */
.sec_wrap{
    max-width:1200px;
    margin:auto;
}
.sec_wrap .sec_lst{
    color:#262626;
}
.sec_lst + .sec_lst{
    margin-top:30px;
}
.sec_wrap .sec_lst{
    margin-top:30px;
}
.sec_wrap h3{
    font-size:17px;
    font-weight:600
}
.sec_wrap > p{
    margin-top:8px;
}
.sec_lst h4{
    font-weight:600;
}
.sec_lst h4,
.sec_lst p,
.sec_lst ul,
.sec_lst ol{
    margin-top:15px;
    font-size:15px;
}
.sec_lst li{
    color:#767676;
    line-height:1.5;
    margin-left:5px;
}

.hwanja_wrap h4{
    font-size:20px;
    font-weight:600
}
.hwanja .hwanja_title{
    color:#36C0FF;
    font-size:18px;
}
.hwanja .hwanja_title strong{
    font-weight:600;
}
.hwanja .hwanja_info{
    padding-left:15px;
}

/* 공통 팝업 스타일 */
.alert_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    display: none;
}
.alert_popup .popup_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.alert_popup .popup_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
}
.alert_popup .popup_head h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.alert_popup .popup_x {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}
.alert_popup .popup_x:hover {
    color: #333;
}
.alert_popup .popup_body {
    padding: 25px;
}
.alert_popup .popup_form_row {
    margin-bottom: 20px;
}
.alert_popup .popup_form_row:last-child {
    margin-bottom: 0;
}
.alert_popup .popup_form_row label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.alert_popup .popup_form_row input {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}
.alert_popup .popup_form_row input:focus {
    border-color: #666;
    outline: none;
}
.alert_popup .popup_hint {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}
.alert_popup .popup_foot {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}
.alert_popup .popup_foot button {
    flex: 1;
    height: 48px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
.alert_popup .popup_btn_cancel {
    background: #eee;
    color: #666;
}
.alert_popup .popup_btn_cancel:hover {
    background: #ddd;
}
.alert_popup .popup_btn_confirm {
    background: #3d3d3d;
    color: #fff;
}
.alert_popup .popup_btn_confirm:hover {
    background: #555;
}

/* 아이디/비밀번호 찾기 탭 스타일 */
.find_tab {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}
.find_tab_btn {
    flex: 1;
    height: 45px;
    background: #f5f5f5;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}
.find_tab_btn:first-child {
    border-radius: 4px 0 0 0;
}
.find_tab_btn:last-child {
    border-radius: 0 4px 0 0;
}
.find_tab_btn:hover {
    background: #eee;
}
.find_tab_btn.active {
    background: #fff;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #3d3d3d;
}
.find_form_content {
    padding: 5px 0;
}
@media(max-width:780px){
    .sub_title_banner .sub_nav ul{
        flex-wrap: wrap;
        row-gap: 10px;
    }
}

@media(max-width:480px){
    .alert_popup .popup_box {
        max-width: 95%;
    }
    .alert_popup .popup_body {
        padding: 20px 15px;
    }
    .find_tab_btn {
        font-size: 13px;
        height: 40px;
    }
}