body{
    background:#292931;
}
#login{
    position: absolute;
    top:35%;
    left: 37%;
    /*transform: translate(25%, 25%);*/
}
#login h2 {
    text-align: center;
    color: white;
    font-family: sans-serif;
    font-size: 35;
}
#login input{
    display: block;
    width: 320px;
    height: 40px;
    padding: 10px;
    font-size: 14px;
    font-family: sans-serif;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    box-shadow: inset 0px -5px 45px rgba(100,100,100,0.2), 0px 1px 1px rgba(255,255,255,0.2);
    margin-bottom: 10px;
}
#login #btnLogin {
    background: #55acee;
    font-size: 18px;
    text-align: center;
    vertical-align: middle;
    line-height: 20px;
}

#login #btnLogin:hover {
    color: #ffff99;
}

#divLoader {
	background-image:url(../images/ajax-loader.gif); 
	background-repeat:no-repeat;
    position:fixed;
    top: 50%;
    left: 50%;
    width:8em;
    height:8em;
    margin-top: -4em; /*set to a negative number 1/2 of your height*/
    margin-left: -4em; /*set to a negative number 1/2 of your width*/
    /*border: 1px solid #ccc;*/
    /*background-color: #f3f3f3;*/
}