﻿#wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    background-color: var(--c-neutral-grey1);
}

#login {
    width: 40%;
    display: flex;
    flex-direction: column;
    position: relative;
}

    #login svg#logo {
        width: 200px;
        margin: 50px auto;
    }

    #login > div {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        /*justify-content: center;*/
        padding-top: 50px;
    }

.form-container {
    margin: 0px auto;
    padding: 5px 10px;
    width: 350px;
}

    .form-container > button {
        width: 100%;
    }

.icons {
    margin: 50px auto 10px;
    display: flex;
    flex-direction: row;
    justify-content: center
}

    .icons button {
        margin: 10px;
        background: var(--c-primary-xxlight);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        text-decoration: none;
        text-align: center;
        color: var(--c-primary);
    }

        .icons button.active {
            background: var(--c-primary-xlight);
            color: var(--c-neutral-white);
        }

        .icons button:hover {
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.05);
        }

#blue {
    /*    background: #0099DD;*/
    flex: 1;
}

    #blue #fill {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 100%;
    }

        #blue #fill svg {
            fill: var(--c-primary);
            stroke: var(--c-primary);
            stroke-width: 0.1;
            padding-left: 1px;
            height: 100%;
            width: auto;
            /*REMOVE STROKE*/
        }

        #blue #fill div {
            flex: 1;
            background: #0099DD;
        }

#bottom {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding-top: 0;
}

@media screen and (max-width: 700px) {
    #wrapper {
        flex-direction: column;
    }

    #login {
        flex: 1;
        width: 100%;
    }

    #blue {
        display: none;
    }
}


