body {
    /*padding-top: 0px;*/
    font-family: 'Titillium Web', sans-serif;
}

/* BootStrap */
.text-primary { 
    color: #0186d4!important; 
}
.btn-primary { 
    border-color: #0186d4; 
    background-color: #0186d4; 
}

a.text-primary:focus, a.text-primary:hover {
     color: #02b7ff!important; 
}

.btn-primary:hover {
    color: #fff;
    background-color: #00a6e8;
    border-color: #02b7ff;
}

/* Especifico */
.ImagenFondo {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
}

.FiltroNDR {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    z-index: -1;

    background-color: rgba(0, 0, 0, 0.75);
}

.CajaLogin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    border-color: #ddd;
    color: #5f6468;
    border-radius: 4px;
    display: block;

    min-width: 200px;
    max-width: 400px;
}

.Logo {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    margin-bottom: 25px;

    /* Si fallase la imagen, muestro tipografia similar */
    font-family: Impact, Charcoal, sans-serif;
    font-size: 70px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}


/* Formularios */
.form-control {
    background: transparent;
    border: 0px;
    border-radius: 0px;
    border-bottom: 1px solid #828282;
    color: #FFF;
}

.form-control:focus {
    background: transparent;
    border: 0px;
    border-bottom: 1px solid #fff;
    outline: 0px;
    box-shadow: none;
    color: #FFF;
} 


@-webkit-keyframes autofill {
    to {
        color: #FFF;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}


