﻿body {
    /*background-image: url(../../Images/fondo_pc.jpg);*/
    background-size: cover;
    background-repeat: no-repeat;
    background-color: white;
}

/* Partes de la página*/
.header-style {
    background-color: #009DD2;
    color: white;
    text-align: left;
    padding-left: 3%;
    display: flex;
    align-items: center; /*Alinear verticalmente*/
}
.body-style {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-style {
    background-color: #009DD2;
    color: white;
    text-align: center;
    display: flex;
    align-items: center; /*Alinear verticalmente*/
    justify-content: center; /*Alinear horizontalmente*/
}


/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

input,
select,
textarea {
    max-width: 280px;
    font-size: 18px;
    height: 45px;
}

.color-white {
    color: white !important;
}

.color-azulAlba {
    color: #009DD2 !important;
}

.botonLogin {
    background-color: #009DD2;
    color: white;
    height: 50px;
    width: 50%;
    line-height: 35px;
}

.logoAlba {
    padding-bottom: 10%;
    height: 25%;
    width: 25%;
}

.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.oculto {
    display: none;
}

/* Tipos de mensaje */
.msjNeutral {
    border-radius: 10px;
    background-color: #41484d;
    color: #c0c7cd;
    font-weight: bold;
    padding-top: 5%;
    padding-bottom: 5%;
    text-align: center;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}
.msjInfo {
    border-radius: 10px;
    background-color: #004c68;
    color: #c3e8ff;
    font-weight: bold;
    padding-top: 5%;
    padding-bottom: 5%;
    text-align: center;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}
.msjError {
    border-radius: 10px;
    background-color: #93000a;
    color: #ffb4ab;
    font-weight: bold;
    padding-top: 5%;
    padding-bottom: 5%;
    text-align: center;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}
.msjAlerta {
    border-radius: 10px;
    background-color: #FFC107;
    color: #7A5D04;
    font-weight: bold;
    padding-top: 5%;
    padding-bottom: 5%;
    text-align: center;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}