/* 
    Document   : login
    Created on : 13/10/2014, 03:41:13 PM
    Author     : EB05
    Description:
        Purpose of the stylesheet follows.
*/

body
{
    background: #EEE;
    font-family:'lucida grande',verdana,helvetica,arial,sans-serif
}
#recuadroLogin
{
    background: url('images/bg_login.png') repeat-x top #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -155px;
    margin-left: -160px;
    width: 320px;
    height: 300px;
    border: solid 1px #066BCE;
    box-shadow: 0px 0px 0px rgba(255, 255, 255, 0.3) inset, 0px 4px 4px rgba(0, 0, 0, 0.2);
}
input[type=text],input[type=password]
{
    border:none;
    border-style: none;
    font-size: 18px;
    font-weight: bold;
    background-color: #FFF;
    color: #666;


}
.submit
{
    text-align: right;
}

form .submit input[type=submit] {
    /*background: repeat scroll 0% 0% #62AF56 -moz-linear-gradient(center top , #2691F9, #066BCE);*/
    
    background: #066BCE;
    color: #FFF;
    padding: 8px 10px;

    border: 1px solid #066BCE;
    border-radius: 4px;
    text-decoration: none;
    min-width: 0px;

}
form .submit input[type=submit]:hover {
    background: #4DA4F8;
    cursor: pointer;
}


#flashMessage {
    position: absolute;
    z-index: 2001;
}


.success, .message, .cake-error, .cake-debug, .notice, p.error, .error-message {
    background: -moz-linear-gradient(center top , #FC0, #E6B800) repeat-x scroll 0% 0% #FC0;
    
    background-color: #E6B800;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 18px;
    padding: 7px 14px;
    color: #404040;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.25) inset;
}
.message {
    clear: both;
    color: #FFF;
    font-size: 140%;
    font-weight: bold;
    margin: 0px 0px 1em;
    padding: 5px;
}
