/* 
    Document   : login
    Created on : 30 бер 2012, 11:31:05
    Author     : Сергей
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}

#loginForm {
    width:300px;
    top:200px;
    left:50%;
    margin-left: -150px;
    border:solid 1px #aaa;
    border-radius:10px;
    text-align:center;
    padding:10px;
    background-color:#fff;
    opacity:0.8;
    position: absolute;
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.5); /* Для Firefox */
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5); /* Для Safari и Chrome */
    box-shadow: 0 0 10px rgba(0,0,0,0.5); /* Параметры тени */
}

a.help img {
    margin-top: 3px;
}

#loginForm #rememberMe {
    margin-top: 8px;
}

#loginForm h1 {
    color: #aaa;
    text-shadow: #333 1px 1px 0;
}

#error {
    width: 400px;
    position: fixed;
    left: 50%;
    margin-left: -190px;
}

#copyright {
    position: fixed;
    bottom: 10px;
    left: 50%;
    margin-left: -115px;
    font-size: 12px;
    color: #555;
    text-shadow: #fff 1px 1px 0; /* Параметры тени */
}