@charset "UTF-8";


.login_wrap {
    padding: 103px 16px 99px;
}
.login_wrap .logo {
    width: 70px;
}
.login_wrap .title {
    color: var(--payBlack, #222528);
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 150%;
    margin-top: 20px;
    margin-bottom: 87px;
}
.login_wrap .info_box {
    display: flex;
    margin: 20px 0 ;
}
.login_wrap .info_box .id_chk {
    display: flex;
}
.login_wrap .info_box .id_chk input {
    display: none;
}
.login_wrap .info_box .id_chk span {
    color: var(--payBlack, #222528);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap:8px;
}
.login_wrap .info_box .id_chk span::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url('../image/login/check.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.login_wrap .info_box .id_chk input:checked + span::before {
    background-image: url('../image/login/check_on.png');
}
.login_wrap .info_box .pasw_select {
    color: var(--payBlack, #222528);
    font-size: 16px;
    font-weight: 400;
    margin-left: auto;
    cursor: pointer;
}

.login_wrap .signup_btn {
    color: var(--primaryColor, #2089FD);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    display: flex;
    margin-top: 60px;
    justify-content: center;
}

@media (max-width:375px) {
    .login_wrap {
        padding: calc(100vw * (103/375)) calc(100vw * (16/375)) calc(100vw * (99/375));
    }
    .login_wrap .logo {
        width: calc(100vw * (60/375));
    }
    .login_wrap .title {
        font-size: calc(100vw * (22/375));
        margin-top: calc(100vw * (20/375));
        margin-bottom: calc(100vw * (87/375));
    }
    .login_wrap .info_box {
        margin: calc(100vw * (20/375)) 0;
    }
    .login_wrap .info_box .id_chk span {
        font-size: calc(100vw * (16/375));
        gap:calc(100vw * (8/375));
    }
    .login_wrap .info_box .id_chk span::before {
        width: calc(100vw * (24/375));
        height: calc(100vw * (24/375));
    }
    .login_wrap .info_box .pasw_select {
        font-size: calc(100vw * (16/375));
    }
    
    .login_wrap .signup_btn {
        font-size: calc(100vw * (16/375));
        margin-top: calc(100vw * (60/375));
    }
}



/* 회원가입 */