
body {
    margin: 0;
    padding: 0;
    font-family: Pretendard;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 로고 스타일 */
.logo {
    max-width: 200px;
    height: auto;
}

.main_login_wrapper {
    background: linear-gradient(180deg, #000c17 50%, #002252 100%);
    height: 100vh;
    position: relative;
    color: #fff;
    padding: 10px;
    padding-bottom: unset;
}

.login_form_outer_div {
    margin-top: -17%;
}

.login_left_side {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login_form_header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
    padding-top: 20%;
    text-align: center;
}

.left_content .head {
    color: #1570ef;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: unset;
    padding-bottom: 31px;
}

.left_content .title {
    font-size: 40px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: unset;
    padding-bottom: 31px;
    font-family: Pretendard;
}

.left_content .content {
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    font-family: Pretendard1;
}

.form-control {
    background-color: transparent;
    border: 1px solid #d1d1d6;
    color: #fff;
    height: 48px;
    margin-bottom: 15px;
}

.form-control:focus {
    background-color: transparent;
    border-color: #1570ef;
    color: #fff;
    box-shadow: none;
}

.form-control::placeholder {
    color: #d1d1d6;
}

.btn-primary {
    background-color: #1570ef;
    border: none;
    height: 48px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #0e4d9c;
}

@media (max-width: 991px) {
    .login_left_side {
        height: auto;
    }

    .login_form_outer_div {
        margin-top: unset;
    }

    .login_img_wrapper {
        display: none;
    }
}

@media (max-width: 767px) {
    .left_content {
        height: unset !important;
        padding-top: unset;
    }

    .login_form_header {
        display: flex;
        align-items: center;
        justify-content: center;
    }
} 