/*
    CSS for standard Login Page
    Created on : 08/07/2014, 10:25:48 AM
    Author     : Oliver Jacobs
*/

  body {
         background: url(images/login_background.jpg) no-repeat center center fixed; 
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        
        background-color: #888;
        
    }
    
    #header {
        background: #133769;
        width: 100%;
        vertical-align: middle;
        opacity: 0.9;
    }
    
    #logo {
    //    float: right;
        padding: 10px;
        height: 50px;
    }
    
    #loginHolder {
        /*position: fixed;
        top: 50%;
        left: 50%;
        margin-top: -200px;
        margin-left: -500px;*/
        position: fixed;
        top: 50%;
        left: 50%;
        margin-top: -250px;
        margin-left: -250px;
        width: 500px;
        height: 100%;
        vertical-align: middle;
    }
    
    #loginContainer {
        position: fixed;
        top: 50%;
        left: 0%;
        margin-top: -250px;
        width: 100%;
        height: 350px;
        background: #1168A9;
    }
    
    #loginHeader {
        text-align: center;
        font-size: 25pt;
        margin: 30px;
        color: #555;
    }
    
    #loginHeader img {
        vertical-align: middle;
        height: 40px;
    }
    
    input {
        display: block;
        height: 50px;
        width: 90%;
        margin: 20px;
        border: none;
       font-weight: bold;
    }
    
   input[type='text'], input[type='password'] {
       font-size: 1em;
       padding: 10px;
   }
    
    input[type='submit'] {
        height: 50px;        
        width: 90%;
        font-weight: bold;
        color: white;
        background: #000;
        font-size: 1.5em;
        border: none;
        margin: auto;

    }
    
    #about {
        color: white;
        width: 100%;
        margin-right: 50px;
        text-align: center;
            color: #133769;
    }
    
    #adminLoginPanel {
        padding-bottom: 20px;
        padding-top: 10px;
        background: #FFF;
        width: 475px;
        border: thin solid black;
    }
    
    h1 {
        margin-top: 20px;
        margin-bottom: 5px;
        font-size: 2em;
    }
    p {
        font-size: 1em;
        font-weight: 100;
    }
    
    p.small {
        font-size: .7em;
    }
    span.loginError {
        padding: 25px;
        line-height: 3em;
        font-size: 1.5em;
        color: red;
        font-weight: bold;
    }
    
    /* Reset Password */
    div.info {
        padding: 10px 25px;
    }
    div.info.reset {
        text-align: right;
    }
    
    a#resetpw {
        color: black;
    }