body {
    font-family: 'Overpass', sans-serif;
    font-weight: normal;
    font-size: 100%;
    color: #ffffff;
    margin: 0;
    /* background-color: #0f4c75; */
    background-color: white;
}

.centrarobjetohorizontal{
    text-align: center;
    justify-content: center;
    align-items: center;
}

.alinearobjetohorizontalderecha{
    text-align: right;
    justify-content: right;
    align-items:flex-start;
}

.alinearobjetohorizontalizquierda{
    text-align: left;
    justify-content: left;
    align-items: flex-end;
}

.colormensaje{
    color:#EEB905;
}

#contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    
    margin: 0;
    padding: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: 100%;
    height: 100%;
}

#central {
    max-width: 500px;
    width: 100%;
}

#imagenencabezado {
    width: 70%;
    height: 70px;
}

.titulo {
    font-size: 180%;
    color: gray;
    text-align: center;
    margin-bottom: 20px;
}

#login {
    width: 100%;
    padding: 50px 30px;
    background-color: #ffffff;
    
    -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.15);
    
    border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    
    box-sizing: border-box;
}

#login input {
    font-family: 'Overpass', sans-serif;
    font-size: 110%;
    color: #1b262c;
    
    display: block;
    width: 100%;
    height: 40px;
    
    margin-bottom: 10px;
    padding: 5px 5px 5px 10px;
    
    box-sizing: border-box;
    
    border: none;
    border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
}

#login input::placeholder {
    font-family: 'Overpass', sans-serif;
    color: #7A7A7A;
}

#login button {
    font-family: 'Overpass', sans-serif;
    font-size: 110%;
    color:#1b262c;
    width: 100%;
    height: 40px;
    border: none;
    
    border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    
    --background-color: #bbe1fa;
    background-color: #dcdcdc;
    
    margin-top: 10px;
}

#login button:hover {
    --background-color: #0f4c75;
    background-color: #001489;
    color:#bbe1fa;
    --color:#EDE9E8;
}

.pie-form {
    font-size: 90%;
    text-align: center;    
    margin-top: 15px;
}

.pie-form a {
    display: block;
    text-decoration: none;
    --color: #bbe1fa;
    color:#F5FFFF;
    margin-bottom: 3px;
}

.pie-form a:hover {
     color: #ECC405;
    --color:#F5FFFF;
}

.inferior {
    margin-top: 10px;
    font-size: 90%;
    text-align: center;
}

.inferior a {
    display: block;
    text-decoration: none;
    color: #bbe1fa;
    margin-bottom: 3px;
}

.inferior a:hover {
    color: #003670;
}

.table-container{
    margin:auto;
}