/*LE PONEOS FUENTE A LAS VISTAS*/
*{
    font-family: 'Open Sans';
}

/*-------------------ESTILO DEL NAV (SERÁ PARECIDO AL RESTO DE VISTAS)------------*/
div.nav{
    background-color: #1274CA;
    height: 135px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 25px;
}

img#logo{
    width: 265px;
    height: 133px;
}

div.titulo{
    margin-left: 250px; 
    margin-top: 25px;
    /* text-align: center; */
    font-weight: bold;
    font-size: 42px;
    color: white;
}


/*-------------------ESTILO DEL MAIN ------------*/

h1#presentacion{
    text-align: center;
    color: #014179;
    text-decoration: underline; 
}

div#divform{
    border-radius: 8px;
    border: 4px solid #014179;
    margin: 0 auto;
    padding: 55px;
    width: 600px;
    /* text-align: center; */
    height: 250px;
}

label.label{
    color: #006DA4;
    font-size: x-large;
    font-weight: bold;
    /* margin-top: 75px; */
}

input.input{
    border: 0px;
    border-bottom: 2px solid #006DA4;
    width: 292px;
    font-size: x-large;
    color: #408CCE;
    margin-left: 20px;
}

input#submit{
    background-color: #1274CA;
    font-weight: bold;
    font-size: large;
    color: white;
    border-radius: 4px;
    border: 2px solid #014179;
    padding: 10px;
    margin-left: 215px;
    width: 170px;
    height: 56px; 
    cursor: pointer;
}