﻿body {
    font-family: Ubuntu, Arial, sans-serif;
    display: flex;
    height: 100vh;
    min-height: 580px;
    width: 100vw;
    background-color: #F7EABC;
    /*background: #FFFFFF url(/images/LAA_Schafisheim_2.jpg) no-repeat 50% 50% fixed;*/
    overflow-y: hidden;

    
}

main {
    height: 100%;
}

#noScriptMessage {
    position: fixed;
    left: 0;
    top: 30%;
    display: flex;
    justify-content: center;
    align-items: center;  
    width: 100%;
    z-index: 10;      
}

#noScriptMessage h2 {
    padding: 5px 10px;
    font-weight: 500;
    color: red;
    background-color: #FFFFFF;
    border: 2px solid red;
    border-radius: 5px;
}

#cotra_logo {
    position: fixed;
    display: flex;
    width: 100vw;
    top: 80px;
}

#cotra_logo img {
    width: 300px;
}

#vistasys_logo {
    position: fixed;
    display: flex;
    justify-content: flex-end;
    bottom: 0;
    right: 0;
}

#login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loginHeading {
    font-size: 50px;
    color: #E51227;
    padding-bottom: 50px;
    text-shadow: 3px 3px 5px #6B6B6B;
}

#loginForm {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    max-width: 300px;
    padding: 30px;
    background: linear-gradient(#F6F6F6, #6B6B6B);
    border-radius: 5px;
    box-shadow: 2px 2px 15px #FFFFFF
}

#loginForm input {
    padding: 0;   
    height: 25px;
}

.labelInput {
    font-size: 18px;
}

.loginInput {
    width: 100%;
    margin-bottom: 20px;
}

#loginButton {
    height: 40px !important;
    width: 300px;
}

#labelErrorMessage {
    padding-top: 10px;
    font-weight: bold;
    color: #FF0000;
    text-shadow: 0px 1px 5px #000000;
    font-size: 106%;
}

@media screen and (max-width: 480px) {
    #cotra_logo {
        justify-content: center;
        left: 0;
        top: 0;
    }

    #cotra_logo img {
        transform: scale(0.7);
    }
    
    #loginHeading {
        font-size: 35px;
        padding-bottom: 50px;
        text-shadow: none;
    }

    #vistasys_logo img {
        transform: scale(0.2);
    }
}

@media (min-width: 481px) and (max-width: 780px) {
    #cotra_logo {
        justify-content: center;
        left: 0;
        top: 20px;
    }

    #loginHeading {
        font-size: 35px;
        padding-bottom: 50px;
    }

    #vistasys_logo img {
        transform: scale(0.5);
    }
}

@media screen and (min-width: 781px) {
    #cotra_logo {
        justify-content: flex-start;
        left: 30px;
        top: 40px;
    }

    #vistasys_logo img {
        transform: scale(0.5);
    }
}