/* 
    Created on : 07.03.2018, 19:17:45
    Author     : cripp
*/

/************************************************
* Das bildschirmfüllende Login-Hintergrundbild
************************************************/
html {
    background: url(/img/loginbackground_production.jpg) no-repeat;
    background-color: #FFFFFF;
    background-size: cover;
    background-attachment: fixed;
    font-family: sans-serif;
    font-size: 15px;
}
html,body {
    height: 100%;
    margin: 0;
    color: #264e72;
    font-family: sans-serif;
}
div.centerwrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

div.mainbox {
    background-color: lightgray;
    opacity: 0.8;
    max-width: 90%;
    width: 700px;
    height: 300px;
}
p {
    text-align: center;
    margin: 0;
}
p.CookieDisclaimer {
    text-align: justify;
    font-size: 8pt;
    margin: 10px;
}
p.Imprint {
    font-size: 8pt;
}
p#errorText {
    color: darkred;
}
form {
    margin: 10px;
    width: 300px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
form p {
    margin: 10px;
}
input {
    width: 80%;
    border-radius: 5px;
    border: 1px;
    border-style: solid;
    padding: 3px;
    padding-left: 30px;
}
input#loginuser {
    background: url(/img/login_user.png) no-repeat;
    background-color: white;
}
input#loginpw {
    background: url(/img/login_pw2.png) no-repeat;
    background-color: white;
}
/* Grundlegende Elemente */
button {
    background-color: white;
    opacity: 1;
    width: 150px;
    height: 20px;
    color: #264e72;
    border: #353535 solid 1px;
}
.loginform button:hover:enabled {
    background-color: #f1e0c7;
}
button:disabled {
    background-color: gray;
}
a {
    text-decoration-style: dotted;
    color: #264e72
}
