/*
 * This file is part of the VecTrax Project
 * Copyright © 2019-2020, Daniele Penazzo. All Rights Reserved.
 * The use of this code is governed by the BSD 3-clause license attached.
 * See the LICENSE file for the full license.
 *
 * Created on: 2019-01-29
 *
 * Login CSS Stylesheet
 *
 * @author: penaz
 */
body{
    height: 100vh;
    width: 100vw;
    background: #EEEEEE;
}

div.login_container{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
}

div.flex-spacer{
    flex-grow: 1;
}

h1{
    color: black;
    text-align: center;
}

.main_pic{
    max-height: 30vh;
    display: block;
    margin: 3em auto 6em auto;
    max-width: 80%;
}

div.footer{
    position: fixed;
    bottom: 0;
    background: #222541;
    color: #FFFFFF;
    padding-right: 2em;
    bottom: 0;
    text-align: right;
    word-wrap: break-word;
    z-index: 999;
    width: 100vw;
}

div#version{
    float: left;
    margin-left: 2em;
}

.default_hidden{
    display: none;
}

@media handheld, screen and (max-width: 800px){
    .mobilehide{
        display: none
    }
}
