#ch_header {
    display: none !important;
}
.wrap {
    position: relative;
    height: 100%;
    letter-spacing: -.5px;
}
.header {
    padding-bottom: 48px;
    box-sizing: border-box;
}
.header .header_inner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}
@media (min-width:800px) {
    .header .header_inner {
        width: 743px;
    }
}
.header .logo {
    display: inline-block;
    margin-top: 50px;
    vertical-align: top;
    background-position: 0 -51px;
    background-repeat: no-repeat;
    width: 155px;
    height: 30px;
}
.header .logo svg {
    fill: rgb(var(--color-text));
    color: rgb(var(--color-text));
}


.login_wrap {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
}
@media (min-width:800px) {
    .login_wrap {
        width: 460px;
        padding: 0;
    }
}
.menu_wrap {
    display: table;
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}
.menu_item {
    position: relative;
    display: table-cell;
    vertical-align: top;
}
.menu_id, .menu_ones, .menu_qr {
    display: block;
    position: relative;
    height: 63px;
    padding-top: 17px;
    border: 1px solid rgb(var(--color-border));
    border-top: 1px solid rgb(var(--color-border));
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    background-color: rgb(var(--color-background));
    text-align: center;
    box-sizing: border-box;
    z-index: 3;
}
.menu_id.-active {
    border-top: 1px solid rgb(var(--color-border));
    border-left: 1px solid rgb(var(--color-border));
}
.menu_qr {
    border-right: 1px solid rgb(var(--color-border));
    border-radius: 0 12px 0 0;
}
.menu_id.-active, .menu_ones.-active, .menu_qr.-active {
    border-color: rgb(var(--color-border));
    background-color: rgb(var(--color-background));
    z-index: 5;
}
.menu_id.-active::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -13px;
    background-position: -225px -104px;
    background-repeat: no-repeat;
    width: 25px;
    height: 62px;
}
.menu_id .menu_text, .menu_ones .menu_text, .menu_qr .menu_text {
    position: relative;
    /* padding-left: 24px; */
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -.5px;
    color: rgb(var(--color-text));
    vertical-align: middle;
}





.panel_wrap {
    position: relative;
    z-index: 3;
    margin-top: -10px;
}
.panel_item {
    border: 1px solid rgb(var(--color-border));
    border-radius: 12px;
    background-color: rgb(var(--color-background));
}
.panel_inner {
    padding: 24px;
}
.login_form {
    position: relative;
}
.input_item {
    position: relative;
    padding: 27px 15px 8px;
    border: 1px solid rgb(var(--color-border));
    border-radius: 8px;
    box-sizing: border-box;
    z-index: 1;
}
.input_item.id {
    height: 60px;
    border-radius: 8px 8px 0 0;
}
.input_item.pw {
    height: 59px;
    border-top: 0;
    border-radius: 0 0 8px 8px;
}
.input_id, .input_pw {
    position: relative;
    display: block;
    width: 100%;
    height: 22px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -.2px;
    color: rgb(var(--color-text));
    z-index: 5;
    outline: 0;
}
button, input, select, textarea {
    border-radius: 0;
    border: none;
    background: 0 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-text-size-adjust: none;
}
.text_label {
    display: inline-block;
    position: absolute;
    bottom: 18px;
    left: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -.2px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    color: #737373;
    pointer-events: none;
    box-sizing: border-box;
    z-index: 5;
}
label {
    cursor: pointer;
}
.input_item.-active .text_label {
    left: 7px;
    bottom: 30px;
    font-size: 12px;
    padding: 0 8px;
    letter-spacing: -.8px;
    white-space: nowrap;
    width: auto;
}







.login_keep_wrap {
    position: relative;
    margin-top: 12px;
    padding-right: 90px;
}
.keep_check {
    position: relative;
    display: inline-block;
    padding-left: 26px;
    cursor: pointer;
}
.keep_check::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-position: -292px -236px;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-color: rgb(var(--color-background));
}
.keep_check .keep_text {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #767678;
}



.login_error_wrap {
    display: none;
}
.login_error_wrap.-active {
    display: block;
}
.login_error_wrap {
    position: relative;
    margin: 20px 0 0;
}
.error_message {
    display: inline-block;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -.5px;
    color: #ff0101;
    vertical-align: middle;
    word-break: keep-all;
}








.btn_login_wrap {
    margin-top: 20px;
}
.btn_login {
    position: relative;
    display: block;
    width: 100%;
    padding: 13px 20px;
    border-radius: 8px;
    background-color: rgb(var(--color-color3));
    box-sizing: border-box;
}
.btn_login .btn_text {
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -.4px;
    color: #fff;
}





.dividing_safe {
    position: relative;
    box-sizing: border-box;
    height: 62px;
    padding: 31px 0 30px;
    text-align: center;
}
.dividing_safe::before {
    content: "";
    position: absolute;
    top: 31px;
    right: 0;
    left: 0;
    height: 1px;
    background: #efeff0;
}
.dividing_safe .text {
    display: inline-block;
    position: relative;
    padding: 0 12px;
    background: rgb(var(--color-background));
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -.4px;
    color: #767678;
    transform: translateY(-50%);
    vertical-align: top;
}


.btn_login_wrap {
    margin-top: 20px;
}
.dividing_safe+.btn_login_wrap {
    margin-top: 0;
}
.btn_login.white {
    padding: 12px 0;
    background-color: #fff;
    border: 1px solid rgb(var(--color-color1));
    box-sizing: border-box;
    text-align: center;
}
.btn_login.white .btn_text {
    font-weight: 700;
    color: rgb(var(--color-color1));
}






















.find_wrap, .relogin_find_wrap {
    padding: 20px 0 48px;
    text-align: center;
}
.find_wrap li, .relogin_find_wrap li {
    position: relative;
    display: inline-block;
}
.find_wrap li+li, .relogin_find_wrap li+li {
    padding-left: 28px;
}
.find_wrap li+li::before, .relogin_find_wrap li+li::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 12px;
    width: 1px;
    height: 12px;
    border-radius: .5px;
    background-color: rgb(var(--color-textsub));
}
.find_wrap .en_find_text, .find_wrap .find_text, .relogin_find_wrap .en_find_text, .relogin_find_wrap .find_text {
    display: inline-block;
    font-size: 14px;
    line-height: 17px;
    text-decoration: none;
    color: rgb(var(--color-textsub));
}






































.footer {
    padding: 48px 0 32px;
    box-sizing: border-box;
}
.footer .footer_inner {
    position: relative;
    text-align: center;
}
.footer .footer_link li {
    display: inline-block;
}
.footer .footer_link li+li {
    position: relative;
    padding-left: 13px;
}
.footer .footer_link li+li::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 1px;
    height: 11px;
    background-color: rgb(var(--color-textsub));
}
.footer .corp, .footer .text {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: -.5px;
    color: rgb(var(--color-textsub));
}
.footer .footer_link+.footer_copy {
    margin-top: 9px;
}
.footer .footer_copy .footer_logo {
    display: inline-block;
    vertical-align: top;
    background-position: -157px -51px;
    background-repeat: no-repeat;
    width: 70px;
    height: 15px;
}
.footer .footer_copy .corp, .footer .footer_copy .text {
    line-height: 16px;
    font-family: 'Helvetica Neue', sans-serif;
}
.footer .footer_copy .corp {
    padding: 0 2px;
    font-weight: 500;
    color: rgb(var(--color-text));
}






































































































































































































































































































































