/* This is the default CSS, the user is not logged on */
body {
    font-family: Verdana, Arial, Sans-serif;
    padding: 0;
    margin: 0;
    font-size: 10px;
}

img.background    {
    position: fixed;
    min-height: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    overflow: hidden;
}

body > h1 {
    position: absolute;
    left: 15px;
    top: 0px;
    font-size: 6em;
    text-align: left;
    color: rgba(0,0,0,0.3);
    margin: 0;
}

div.logon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin:    auto;
    width: 300px;
    height: 240px;
    border-radius: 15px;
    opacity: 0.95;
    box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.5);
    background: linear-gradient(to bottom, #777777 0%,#ffffff 100%);
}

div.logon h1 {
    background: #777777;
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 10px;
    margin: 0;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}

div.logon label {
    color: rgba(0,0,0,0.8);
    display: block;
    clear: both;
    font-size: 1.5em;
    margin: 5px 20px 0 20px;
}

div.logon input {
    opacity: 0.6;
    display: block;
    clear: both;
}

div.logon input[type=text],
div.logon input[type=password] {
    width: 250px;
    height: 22px;
    padding: 8px;
    margin: 0 20px 5px 20px;
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 5px;
    background: rgba(0,0,0,0.1);

}

div.logon input[type=submit] {
    position: absolute;
    border: none;
    width: 300px;
    padding: 10px;
    margin: auto 0 0 0;
    background: #999999;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    top: auto;
    bottom: 0;
    height: 35px;
    border-radius: 0 0 15px 15px;
}

div.logon input[type=submit]:hover {
    background: #bbbbbb;
}


div.alert.error,
div.alert.warning,
div.alert.success {
    position: fixed;
    top: 20px;
    left: 40%;
    margin:    0px auto 20px auto;
    padding: 1em 2em 1em 100px;
    background: white;
    width: 20%;
    height: 4rem;
    border-radius: 15px;
    opacity: 0.85;
    box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.5);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: black;
}

div.alert.error {
    background: url("templates/default/images/icons/error.png") no-repeat #ffbbbb 15px;
}

div.alert.warning {
    background: url("templates/default/images/icons/warning.png") no-repeat #ffffbb 15px;
}

div.alert.success {
    background: url("templates/default/images/icons/ok.png") no-repeat #bbffbb 15px;
}

div.alert.error:empty,
div.alert.warning:empty,
div.alert.success:empty {
    display: none;
}

/* vim: set syntax=css: */

/* vim: set syntax=css: */
