:root {
    --blanco: #fff;
    --negro: #000;
    --naranja: #FF8100;
    --plomo: #4C4A48;
    --azul: #134EB7;
    --fuenteSecundaria: 'Montserrat', sans-serif;
}

/** Utilidades **/
.alinear-centro{
    text-align: center;
}
/** Utilidades **/

/** Globales **/
html{
    box-sizing: border-box;
    font-size: 62.5%;
}

*, *:before, *:after{
    box-sizing: inherit;
}

body{
    font-family: var(--fuenteSecundaria);
    font-size: 1.6rem;
    line-height: 2;
}

.contenedor{
    max-width: 120rem;
    width: 95%;
    margin: 0 auto;
}
/** Fin Globales **/

.error{
    padding: .5rem;
    text-align: center;
    background-color: red;
    border-radius: 10px;
}

.error span{
    color: var(--blanco);
}

/** Footer **/
footer {
    background-color: var(--negro);
}
.footer-texto{
    text-align: center;
    color: var(--blanco);
    padding: .05rem;
}

.footer-texto span{
    font-weight: bold;
}
/** Final Footer **/

header h1{
    text-align: center;
}

.login{
    background-color: var(--naranja);
    max-width: 60rem;
    margin: 0 auto;
    padding: 1rem 5rem;
    border-radius: 2rem;
}

#formlg p{
    text-align: center;
    font-size: 3rem;
    margin: 2rem 0 0 0;
}

#formlg label{
    font-weight: bold;
    text-transform: uppercase;
    display: block;
}

#formlg input:not([type="submit"]){
    padding: 1rem;
    display: block;
    width: 100%;
    background-color: var(--blanco);
    border: none;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.botonlg{
    background-color: var(--blanco);
    color: var(--negro);
    font-weight: bold;
    text-decoration: none;
    padding: 1rem 3rem;
    text-align: center;
    margin-top: 2.5rem;
    border: none;
    cursor: pointer;
    border-radius: 1rem;
}

.logos{
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .logos{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        align-items: center;
        margin: 3rem auto;
        max-width: 80rem;
        justify-content: center;
    }
}

img{
    width: 100%;
}

@media (min-width: 768px){
    footer{
       position: fixed;
       bottom: 0;
       width: 100%; 
   }
}