.page {
    width: 100%;
    min-height: 800px;
    height: 100vh;
    padding: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.login_bg {
    width: 520px;
    height: 580px;
    /* height: auto; */
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;

}
.page_container {
    padding: 100px 0;
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
    text-align: center;
}
.con_box {
    width: 100%;
}
.login_page_title {
    font-size: var(--ft32);
    font-weight: var(--semi-bold);
    margin-bottom: 30px;
}
.sub_title {
    font-size: var(--ft18);
    color: var(--sub-ft);
}
.divide_line {
    text-align: center;
    position: relative;
    margin-bottom: 24px;
}
.divide_line span {
    position: relative;
    background-color: var(--white);
    color: var(--gray-300);
    font-size: var(--ft15);
    padding: 0 14px;
}
.divide_line::before {
    content: '';
    display: inline-block;
    height: 1px;
    width: 100%;
    background-color: var(--light-line);
    position: absolute;
    left: 0;
    top: 50%;
}
.btn_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.login_btn {
    width: 100%;
    border-radius: 9999px;
    height: var(--btn-height);
    text-align: center;
    position: relative;
    font-weight: var(--semi-bold);
}
.login_btn .icon {
    width: 36px;
    height: 36px;
    position: absolute;
    left: 24px;
    top: 50%;
    translate: 0 -50%;
    border: 0;
}
.kakao_login {
    background: #FEE500;
    color: #17191D;
}
.naver_login {
    background: #03C75A;
    color: white;
}


@media all and (max-width: 600px) {
    .page.login {
        padding: 0 20px;
        min-height: 600px;
    }
    .login_bg {
        width: 100%;
    }
    .login_bg img {
        object-fit: contain;
    }
}