header, nav {
    display: none;
}
.footer {
    margin: 0;
}

.body_content {
    padding: unset;
}
.page {
    width: 100%;
    padding: unset;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    min-height: 100vh;
}
.page__container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.page_left {
    width: 100%;
    height: 100vh;
    background: url(/images/visual_1.png) no-repeat center/cover;
}

/*-- page_right --*/
.page_right {
    width: 100%;
    height: 100vh;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
}

.title_box {
    margin-bottom: 40px;
}

.login__logo {
    width: 200px;
    margin-bottom: 40px;
    /* display: none; */
}

.page__title {
    font-size: var(--ft20);
    color: var(--gray-900);
    text-align: center;
    font-weight: 500;
}

input[type="text"],
input[type="password"] {
    height: 60px;
    border: 1px solid var(--dark-line);
    border-radius: var(--border-radius);
    padding: 0 20px;
}

    input[type="text"]:focus,
    input[type="password"]:focus {
        background-color: white;
    }

form {
    width: 100%;
    max-width: 378px;
    display: flex;
    flex-direction: column;
}

    form input {
        width: 100%;
        height: 48px;
        margin-bottom: 12px;
    }

    form .check_box {
        color: white;
    }

.text-danger {
    font-size: var(--ft14);
    color: var(--gray-900);
    text-align: center;
    margin: 10px 0;
}

.login_btn_wrap {
    width: 100%;
    max-width: 378px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}
.login__btn {
    width: 100%;
    max-width: 378px;
    height: 60px;
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.sns_login {
    width: 100%;
    height: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    background: none;
    color: var(--gray-700);
    border-radius: var(--border-radius);
    cursor: pointer;
    position: relative;
}
.sns_login img {
    width: 28px;
    height: 28px;
    position: absolute;
    left: 20px;
}
.sns_login.google_btn {
    border: 1px solid #d6d6d6;
} 
.sns_login.kakako_btn {
    background-color: #FFEB00;
}
.sns_login.naver_btn {
    background-color: #21C603;
    color: white;
}

.download_btn {
    border: 1px solid white;
    margin-top: 20px;
}

    .download_btn:hover {
        background-color: #ffffff11;
    }

    .download_btn a {
        color: white;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .download_btn a span {
            margin-right: 10px;
        }

@media all and (max-width: 860px) {
    .page_left {
        display: none;
    }
    .login__logo {
        display: block;
    }
}
