body {
    background-color: #edeceb;
}

.logo {
    height: 10rem;
    width: 12rem;
    background-color: transparent !important;
}

.login_header {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 95%;
    margin: auto;
    padding-top: 0rem;
    height: 20%;
}

.title_container {
    display: grid;
    align-content: center;

    >a {
        font-size: 2.5rem;
    }
}

.login_container {
    height: 60%;
    display: grid;
    justify-content: center;

    >.login-box-body {
        width: 35rem;
        background-color: transparent;
        display: grid;
        align-items: center;
    }
}

.login_footer {
    width: 95%;
    display: flex;
    justify-content: space-between;
    margin: auto;

    >.left_image {
        width: 70rem;
        height: 5rem;
    }

    >.right_image {
        width: 27rem;
        height: 5rem;
    }
}

@media screen and (max-width: 480px) {
    .login_header {
        width: 84%;
        height: 10%;
        position: relative;
    }

    .logo {
        height: 5rem;
        width: 6rem;
    }

    .title_container a {
        font-size: 1.5rem;
    }

    .logo_link {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .login_container {
        align-items: center;
    }

    .login_footer {
        width: 84%;
        justify-content: center;
        position: fixed;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);

        >.left_image {
            width: 35rem;
            height: 2.5rem;
        }

        >.right_image {
            display: none;
        }
    }
}