body {
    font-family: 'Overpass', sans-serif;
    font-weight: normal;
    font-size: 100%;
    color: #1b262c;
    margin: 0;
    background: url("../img/fondo.jpeg");
    /*background: url("../img/sep_pc.png");*/
    background-position: center center;
    /* El fonde no se repite */
    background-repeat: no-repeat;
    /* Fijamos la imagen a la ventana para que no supere el alto de la ventana */
    background-attachment: fixed;
    /* El fonde se re-escala automáticamente */
    background-size: cover;
    /* Color de fondo si la imagen no se encuentra o mientras se está cargando */
    background-color: #FFF;
    /* Fuente para el texto */
    text-align: center;
    color: #000;
    font-family: "Times New Roman", Times, serif;
}

@media only screen and (max-width: 767px) {
    
    
    body {
        background-image: url("../img/fondo_cel.jpeg");
        /*background-image: url("../img/sep_tel.png");*/
        background-repeat: no-repeat;
        /* Fijamos la imagen a la ventana para que no supere el alto de la ventana */
        background-attachment: fixed;
        /* El fonde se re-escala automáticamente */
        background-size: cover;
        /* Color de fondo si la imagen no se encuentra o mientras se está cargando */
        background-color: #FFF;
        /* Fuente para el texto */
        text-align: center;
        color: #000;
        font-family: "Times New Roman", Times, serif;
    }
}

#contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: 100%;
    height: 100%;
}

#central {
    margin-top: 108px;
    max-width: 350px;
    width: 100%;
}

.titulo {
    font-size: 250%;
    color: #268d51;
    text-align: center;
    margin-bottom: 10px;
}

#login {
    width: 100%;
    padding: 0px 0px;
    margin-top: 70px;
    box-sizing: border-box;
    font-size: 20px;
}

#btn_registrar {
    font-family: 'Overpass', sans-serif;
    font-size: 110%;
    color: #f8f542;
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding: 5px 5px 5px 10px;
    background-color: #337ab7;
    border-color: #977272;
}

#checks {
    width: 0%;
    margin-left: 0%;
    margin-right: 0%;
}

#checks1 {
    width: 20%;
    margin-left: 0%;
    margin-right: 0%;
}

#checks2 {
    width: 20%;
}

#btn_ingreso {
    font-family: 'Overpass', sans-serif;
    font-size: 110%;
    color: #f8f542;
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding: 5px 5px 5px 10px;
    background-color: #077c46;
    border-color: #977272;
}

#login input {
    font-family: 'Overpass', sans-serif;
    font-size: 110%;
    color: #000000;
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding: 5px 5px 5px 10px;
}

#login input::placeholder {
    font-family: 'Overpass', sans-serif;
    color: #ee9d9d;
}

#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;
    margin-top: 10px;
}

#login button:hover {
    background-color: #0f4c75;
    color: #bbe1fa;
}

.pie-form {
    font-size: 90%;
    text-align: center;
    margin-top: 15px;
}

.pie-form a {
    display: block;
    text-decoration: none;
    color: #bbe1fa;
    margin-bottom: 3px;
}

.pie-form a:hover {
    color: #0f4c75;
}

.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: #3282b8;
}