body {
    background: #eee7ec;
    background-size: cover;
}

a {
    color: #474747;
}

a:hover {
    color: var(--gray_9);
}

.content-block {
    background: ghostwhite;
    width: 450px;
    min-height: calc(100vh - 50px);
    padding: 50px 50px;
}

.content-block .logo {
    height: 33px;
    width: 100px;
    margin-bottom: 40px;
}

.accounts-footer {
    background: ghostwhite;
    width: 450px;
    height: 50px;
    padding: 0 50px;
    text-align: center;
}

/*--------------
    Mobile mods
---------------*/

/* Lower than smartphone */
@media only screen and (max-width: 768px) {
    .accounts-footer {
        width: 100%;
    }
    .content-block {
        width: 100%;
        padding: 50px 15px;
    }
}