/* Ported from resources/js/index/components/LoginModal.vue <style scoped> */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    justify-content: center;
    align-items: center;
    display: flex;
}
.modal-lg {
    max-width: 800px;
}
.login_wraper {
    background-color: #fff;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
}
.login_img {
    width: 50%;
    max-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_img img {
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.3;
}
.login_form_box {
    width: 50%;
    padding: 15px;
    background-color: #fff;
    position: relative;
}
.login-btn {
    padding: 5px 15px;
}
@media only screen and (max-width: 991.98px) {
    .login_img {
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        max-height: 100%;
    }

    .login_form_box {
        width: calc(100% - 30px);
        margin: 15px auto;
        border-radius: 15px;
    }
}

@media only screen and (max-width: 575.98px) {
    .login_form_box {
        padding: 30px;
    }

    .login_img {
        bottom: 0;
    }

    .login_img img {
        width: 100%;
    }
}
