/* 
    Document   : login
    Created on : 15-ene-2014, 11:31:32
    Author     : guachinchesphere
    Description:
        Estilos para el login a la extranet
*/

body {
    background-color: #f0e9dc;
}
/* ==========================================================================
    GENERALES DEL LOGIN Y RECUPERACION DE PASS
========================================================================== */
/* Cabecera */
#header_principal {
    width: 100%;
    height: 100px;
    background-color: #9b5c57;
}
/* Imagen header */
#header_principal img {
    display: block;
    width: 420px;
    height: 70px;
    
    margin: auto;
    padding-top: 15px;
}
/* Contenedor formularios */
article.acceso {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    
    width: 380px;
    position: relative;
    margin: auto;
    margin-top: 30px;
    overflow: hidden;
    
    background-color: white;
}
/* Títulos */
article.acceso h1 {
    background-color: #423937;
    color: white;
    
    width: 100%;
    height: 30px;
    line-height: 30px;
    
    font-weight: bold;
    font-size: 16px;
    text-indent: 10px;
}
/* Formularios */
article.acceso form {
    width: 360px;
    padding: 30px 10px 10px 10px;
}
/* Inputs */
article.acceso input[type="text"],
article.acceso input[type="email"],
article.acceso input[type="password"] {
    width: 200px;
    height: 40px;
    text-align: center;
    font-size: 14px;
    
    color: #6c6b6b;
    background-color: #d9d7d7;
    border: none;
    margin-bottom: 10px;
    
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
/* Labels */
article.acceso label {
    display: inline-block;
    float: left;
    width: 140px;
    line-height: 40px;
    overflow: hidden;
    font-weight: bold;
}
/* Botón enviar */
article.acceso .boton {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    
    display: block;
    width: 120px;
    line-height: 30px;
    height: 30px;
    margin: auto;
    margin-top: 10px;
    color: white;
    font-size: 14px;
    background-color: #e58574;
}
/* Has olvidado */
article.acceso p a {
    display: block;
    margin: auto;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    color: #e58574;
    font-style: italic;
}
/* Powered by */
aside.powered {
    width: 220px;
    margin: auto;
    margin-top: 50px;
    text-align: center;
    font-weight: bold;
    font-style: italic;
}
aside.powered img{
    display: block;
    width: 220px;
    margin-top: 10px;
    margin-bottom: 20px;
}
/* Mensajes de info */
.display_message {
    width: 220px;
    margin: auto;
    text-align: center; 
    color: white;
    font-weight: bold;
    font-size: 14px;
    
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
}
/* ==========================================================================
    NOTIFICACIONES
========================================================================== */
/* Notificaciones de los formularios */
.personal-notice { 
    background: #9fc671; 
    border-top: 7px solid #87af52;  
    padding: 10px; 
}
.error-notice {
    background: #cc5258; 
    border-top: 7px solid #af3541;  
    padding: 10px; 
}