@import url('base.css');

* {
    vertical-align: middle;
}

body {
    background: #fff;
}

input[type=text],
input[type=number],
input[type=submit],
button[type=button],
input[type=password] {
    border-radius: 5px;
    /*line-height: 35px;*/
    text-align: center;
    width: 100%;
    min-height: 40px;
}

.btn {
    padding: 0
}

.btn-info,
.btn-info:active {
    border-radius: 5px;
    min-width: 160px;
    line-height: 35px;
}

.btn-info:hover {
    background: var(--ColorHoverBotonesAccion);
    border: 2px solid var(--ColorAmarilloFooter);
    border-radius: 5px;
}

.fondo {
    z-index: -10000;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.ctn-sesion {
    position: absolute;
    margin: auto;
    max-height: 480px;
    width: 100%;
    display: block;
    justify-content: center;
    background: #fff;

    bottom: 0;
    left: 0;
    top: 0;
}

.ctn-recordatorio {
    margin: auto;
    height: 65%;
    width: 90%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.12);
    display: block;
    justify-content: center;
    background: #fff;
}

.logotipo {
    display: block;
    text-align: center;
    color: var(--ColorLogo);
    padding: 1px;
    border-bottom: 1px solid var(--ColorAmarilloFooter);
}

.sesion {
    justify-content: center;
    display: block;
    padding: 10px;
}

.titulo {
    padding: 15px;
    padding-bottom: 30px;
    text-align: center;
}

.titulo h3 {
    margin: 0;
}

.bloque {
    padding: 3px;
}

.recordar {
    text-align: center;
}

.bloque-code {
    padding: 5px 20px;
    justify-content: center;
    display: flex;
}

.bloque-code input[type=text] {
    border-radius: 5px;
    line-height: 35px;
    text-align: center;
    width: 40px;
    min-height: 40px;
    margin: 5px;
}

.bloque-code input[type=submit],
button[type=button] {
    border-radius: 25px;
    line-height: 35px;
    text-align: center;
    width: 60%;
    min-height: 40px;
    margin: 5px;
}

footer {
    color: white;
    background-color: #7be61d;
    width: 100%;
    height: 81px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.fondo {
    background-color: rgba(0, 159, 227, 0.7);
    filter: brightness(0.8);
}

body {
    /* Ubicaci¨Žn de la imagen */
    background-image: url(../images/background-trilha.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

/* ---------- Media Querys ----------*/

@media only screen and (min-width: 768px) {

    /* Para tablets: */
    .ctn-sesion {
        height: 520px;
        width: 400px;
        opacity: 0.9;
        filter: alpha(opacity=50);
        border-radius: 5px;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.12);
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    .ctn-recordatorio {
        height: 420px;
        width: 50%;
    }

    .fondo1 {
        background-color: rgba(0, 159, 227, 0.7);
        filter: brightness(0.8);
    }
}