body {
    font-family: Roboto,Arial,sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

body a {
    color: #8c8e94;
}
body a:hover {
    color: #000;
    transition: all .3s linear;
}

.login-container {
    font-size: 14px;
    width: 100%;
    max-width: 670px;
    max-height: 1080px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    text-align: center;
    padding: 64px 80px 40px;
}

.header {
    margin: 30px 0;
    width: 100%;
    text-align: left;
}

.header .logo {
    max-width: 300px;
    width: 100%;
}

.content {
    width: 100%;
}

.login-button {
    background: #7839EE;
    border-radius: 4px;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-bottom: 30px;
    transition: background .3s ease;
    text-decoration: none;
}
.login-button:hover {
    color: #fff;
}

.login-button:hover {
    background-color: #6631ca;
}

.footer {
    color: #8c8e94;
    margin-top: 20px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.footer .logo {
    filter: grayscale(100%);
    opacity: 0.5;
}

@media (max-width: 600px) {
    .footer {
        align-items: center;
        flex-direction: column-reverse;
        justify-content: flex-start;
    }

    .footer > div {
        margin: 5px 0;
    }

    .login-container {
        padding: 20px 40px;
    }
}
