@charset "utf-8";
/* CSS Document */

body,html{
    font-family: Verdana, Geneva, sans-serif;
}

.wrapper {
    position: absolute;
    /*top: 50%; /* Buscamos el centro horizontal (relativo) del navegador 50% para centrar*/
    margin-top: 75px;
    left: 50%; /* Buscamos el centro vertical (relativo) del navegador */
    width: 300px; /* Definimos el ancho del objeto a centrar */
    height: 300px; /* Definimos el alto del objeto a centrar */
    /*margin-top: -150px; /* Restamos la mitad de la altura del objeto con un margin-top */
    margin-left: -150px; /* Restamos la mitad de la anchura del objeto con un margin-left */
}

.logotipo {
    margin-bottom:30px;
}

.formulario_validacion {
    color: #1F1A1E;
    font-size: 10pt;
    margin-left:60px;
}

.etiqueta_campo_formulario {
    font-size: 12pt;
    font-weight: bold;
    color: #3F5165;
    margin-top:15px;
} 

input {
    color: #3F5165;
    height: 28px;
    width: 200px;
    padding-left: 10px;
    text-decoration: none;
    background-repeat: repeat-x;
    font-size: 12pt;
}

.boton_formulario {
    font-size:11pt;
    font-weight:bold;
    color:white;
    background:#3F5165;	
    border:0px;
    width:85px;
    height:30px;
    margin-top:10px;
    text-align: center;
    padding-right: 11px;
}

.boton_formulario:hover {   
    background:#38657C;	
}