body {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.container-outer {
    height: 400px;
    max-width: 800px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}

.background {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-image: url('/images/login.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.icon {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    margin: auto;
    width: 200px;
}

.img-container {
    display: none;
    justify-content: center;
}

.mob-icon {
    display: none;
    width: 200px;
}

.container-inner {
    margin: 24px;
}

@media only screen and (max-width: 650px) {
    .background {
        display: none;
    }
    .z-depth-3 {
        box-shadow: none;
    }
    .mob-icon {
        display: flex;
    }
    .img-container {
        display: flex;
    }
    .container-outer {
        height: unset;
    }
}
