﻿html, body {
    margin: 0;
    height: 100%;
}

.flex-centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.login {
    flex: 1 0 auto;
    flex-direction: column;
}

.logo {
    flex: 2 0 auto;
    background: linear-gradient(0, #010313 30%, #040322 100%) no-repeat fixed;
    background-color: #010313;
}

.logo-image {
    width: 50%;
    height: auto;
}

.login-link {
    width: 50%;
    text-decoration: none;
    margin: 3rem 0 3rem 0;
}

.login-image {
    width: 100%;
    height: auto;
    display: block;
}

.login-link:hover {
    box-shadow: 0 0 5px #ccc;
}

.support-link {
    width: 5%;
    text-decoration: none;
}

.support-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .page {
        flex-direction: column;
    }

    .logo {
        flex: 1 1;
        padding: 1rem;
    }

    .logo-image {
        width: 100%;
    }

    .login-link {
        width: 75%;
    }

    .support-link {
        width: 10%;
    }
}