/***** Basic Elements *****/
body{
    color: #343434;
}

/***** Generic Classes *****/  
a           {color: #343434; text-decoration: none;}
a:hover     {text-decoration: underline;}
p           {margin-bottom: 1em} 

h1          {font-size: 2.5em; margin-bottom: 1em;}

/***** Basic Layout *****/
.wrapper{
    margin: 10% auto;
    width: 450px;
}  
#content{
    background: url(/images/layout/login-bg.png);
    height: 158px;
    width: 358px;
    padding: 50px 50px;
}
#content img{
    margin-bottom: 20px;
}
#forgotLink{
    float: right;
}

/***** Forms *****/
form dl{
    margin-top: 1em;
    width: 320px;
}
form dt{
    float: left;
    font-weight: bold;
    line-height: 1.8em;
    padding-right: 10px;
    text-align: right;
    width: 100px;
}
form dd{
    margin-bottom: 1em;
}
form input[type='text'],
form input[type='password']
{
    width: 200px;
}
form button{
    text-align: right;
    border: none;
    background: none;
    padding: 0;
    font-weight: bold;
    font-size: 1em;
    border-bottom: 1px solid transparent;
}
form button:hover{
    border-bottom: 1px solid #343434;
}
form .forgotLink{
    float: right;
    margin-right: .5em;
    line-height: 1.5em;
}
form #submit-element{
    float: right;
}
.hint{
    background: url('/images/icons/24/notice.png') 0px center no-repeat;
    padding-left: 35px;
    height: 24px;
    color: #931b1b;
    margin-bottom: 1em;
}
ul.errors li{
    margin: .5em 0 .5em 110px;
    color: #931b1b;
    background: url('/images/icons/12/error.png') 0px center no-repeat;
    padding-left: 20px;
}

ul.msg li{
    padding-left: 34px;
    margin-bottom: 1em;
    min-height: 24px;
}
ul.msg li.error{
    color: #931b1b;
    background: url(/images/messages/error.png) 0 center no-repeat;
}
ul.msg li.success{
    color: #343434;
    background: url(/images/messages/success.png) 0 center no-repeat;
}