/* 
    Document   : login
    Created on : 15/10/2011, 21:31:37
    Author     : alan@sgi.com.py (Alan Schwertner)
    Description:
        Folha de estilo utilizada na tela de login do gerenciador.

    Copyright: SGI Informática - 2011 - Todos os direitos reservados.
*/

html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    color:#333;
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    font-stretch:normal;
    background:#FFF;
}
#center {
    width: 240px;
    height:200px;
    position:absolute;
    top:50%;
    left:50%;
    margin:-100px 0 0 -120px;
    overflow:hidden;
}
#logo {
    width:240px;
    height:50px;
    background-image:url(../imagens/admin_logo.png);
}
form p {
    line-height:16px;
    margin-bottom:10px;
}
input[type="text"],
input[type="password"]
{
    width: 190px;
    float: right;
}

input[type="submit"]
{
    margin-left: 43px;
}

.error {
    color:#F00;
    line-height:20px;
    padding-left:5px;
    margin-top:5px;
}

