.login-wrap {
    padding: 205px 20px 100px;
}

.login-content {
    position: relative;
    padding: 80px 120px 108px;
    background: url(/images/login-bg-s.png) right 20px bottom 20px no-repeat rgb(124, 90, 255);
    border-radius: 10px;
    max-width: 680px;
    margin: 0px auto;
    width: 100%;
}

.login-content .login-box {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-top: 11px;
}

.login-content .login-box .login-left {
    display: flex;
    gap: 20px;
}

.login-content a {
    margin-left: 5px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-decoration: underline;
}

.login-content .login-box a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    opacity: 0.5;
    cursor: pointer;
}

.login-content .login-box a.active {
    opacity: 1;
}

.login-content .id-triangle {
    transform: rotate(180deg);
    position: absolute;
    top: 157px;
    left: 136px;
    display: none;
}

.id-input {
    width: 100%;
    position: relative;
    margin-top: 20px;
    border: none;
    display: block;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    font-weight: normal;
    text-align: left;
    color: rgb(0, 0, 0);
    padding: 18px 22px;
    border-radius: 10px;
    box-sizing: border-box;
}

.password-wrap {
    position: relative;
}

.pw-input {
    width: 100%;
    position: relative;
    margin-top: 12px;
    border: none;
    display: block;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    font-weight: normal;
    text-align: left;
    color: rgb(0, 0, 0);
    padding: 18px 22px;
    border-radius: 10px;
    box-sizing: border-box;
}

.password-wrap img {
    display: none;
    position: absolute;
    cursor: pointer;
    top: 0px;
    right: 0px;
    width: 24px;
    height: 24px;
}

.login-button-wrap {
    position: relative;
    margin-top: 12px;
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.02em;
    border-radius: 10px;
}

.loginbtn {
    display: block;
    width: 100%;
    height: 54px;
    line-height: 54px;
    border-radius: 5px;
    background-color: rgb(124, 90, 255);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: bold;
    transition: 0.5s;
    text-align: center;
    text-decoration: none;
    margin-left: unset !important;
}

.login-button-wrap a {
    text-decoration: none;
    font-weight: bold;
    color: rgb(255, 255, 255);
}

.login-button-wrap .loginbtn {
    border: 1px solid rgb(150, 123, 255);
    border-radius: 10px;
    background: rgb(150, 123, 255) !important;
}

.login-button-wrap .loginbtn.kakaologinbtn {
    background: #FEE500 !important;
    border: 1px solid #FEE500;
    margin-top: 12px;
    color: rgb(0 0 0 / 85%);
}

.login-button-wrap .loginbtn.kakaologinbtn img {
    margin-right: 8px;
}

.rememberme-wrap {
    position: relative;
    box-sizing: border-box;
    margin-top: 21px;
}

.rememberme-wrap input[type="checkbox"] {
    display: none;
}

.rememberme-wrap svg {
    width: 18px;
    height: 18px;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
    top: -2px;
}

.rememberme-wrap input[type="checkbox"]:checked + label svg {
    cursor: pointer;
}

.rememberme-wrap input[type="checkbox"]:checked + label svg rect {
    stroke: rgb(255, 255, 255);
    fill: transparent;
}

.rememberme-wrap input[type="checkbox"]:checked + label svg path {
    stroke: rgb(255, 255, 255);
    opacity: 1;
}

.login-content p {
    font-size: 24px;
    font-weight: normal;
    line-height: normal;
    color: rgb(0, 0, 0);
    letter-spacing: -0.72px;
}

.rememberme-wrap p {
    margin: 0px 0px 0px 6px;
    vertical-align: super;
    display: inline-block;
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: rgb(255, 255, 255);
}

.overlay-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition: all;
}

.overlay-wrapper .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: 0.2s;
}

.overlay-wrapper .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 298px;
    width: 100%;
    height: auto;
    z-index: 99999;
    border-radius: 6px;
    background: rgb(255, 255, 255);
    transition: 0.2s;
    padding: 26px 15px 15px;
}

.overlay-wrapper .container p {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 14px;
    display: block;
}

.overlay-wrapper .container span {
    font-size: 14px;
    color: rgb(102, 102, 102);
    text-align: center;
    display: block;
    line-height: 120%;
    margin-bottom: 21px;
}

.overlay-wrapper .flex {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 8px;
}

.overlay-wrapper .container p {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 14px;
    display: block;
}

.overlay-wrapper .flex .btn {
    width: 100%;
    background: rgb(124, 90, 255);
    border-radius: 6px;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: 0.2s;
}

.overlay-wrapper .flex .btn.cancel-btn {
    background: rgb(247, 247, 247) !important;
    color: #000000 !important;
}

.overlay-wrapper .flex .btn:last-child {
    background: rgb(124, 90, 255);
    color: rgb(255, 255, 255);
}

@media (max-width: 770px) {
    .login-wrap {
        padding: 144px 20px 50px;
    }

    .login-content {
        padding: 40px 30px 45px;
        background-size: 173px 199px;
        background-repeat: no-repeat;
        background-position: right 9px bottom 9px;
    }

    .login-content .login-box {
        font-size: 14px;
        line-height: 20px;
    }

    .login-content .login-box .login-left {
        gap: 16px;
    }

    .login-content .id-triangle {
        transform: rotate(180deg);
        position: absolute;
        top: 111px;
        left: 64px;
    }

    .id-input {
        padding: 16px 20px;
        font-size: 12px;
        line-height: 17px;
        margin-top: 16px;
        border-radius: 6px;
    }

    .password-wrap {
        font-size: 16px;
    }

    .pw-input {
        padding: 16px 20px;
        font-size: 12px;
        line-height: 17px;
        margin-top: 10px;
        border-radius: 6px;
    }

    .login-button-wrap {
        font-size: 13px;
    }

    .rememberme-wrap {
        font-size: 14px;
    }

    
}