/*body,html{
margin: 0;
padding: 0;
width: 100%;
height: 100%;
position: relative;
}*/
/*.login{
border: 1px solid #E1E1E1;
border-radius: 5px;
padding: 17px;
width: 300px;
position: absolute;
top:50%;
left: 50%;
transform:translate(-50%, -50%);
}
@media (max-width: 400px)
{
.login{
    width: 90%;
}*/

body, html {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #C4CDD0;
    width: 100%;
    height: 100%;
    position: absolute;
}



    /*Contenedor*/
.login-box {
    position: absolute;
    width: 390px;
    height: 400px;
    background: rgba(42, 63, 84, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 80px 40px;
    border-radius: 15px;
}


    /*imagen*/
.login-img {
    position: absolute;
    z-index: -1;
    width: 150px;
    top: calc(-150px/2);
    left: calc(50% - 75px)
}

    /*Texto*/
    .login-text {
        text-align: center;
        font-size: 30px;
        color: #fff;
    }

    /*Estilos Inputs Párrafos*/
    .login-box p {
        margin: 0;
        padding: 0;
        color: #fff;
        font-weight: bold;
    }

    /*Estilos Inputs*/
    .login-box input {
        width: 100%;
        margin-bottom: 20px;
     
    }

        .login-box input[type="Usuario"],
        .login-box input[type="Password"] {
            background: transparent;
            height: 20px;
            border: none;
            border-bottom: 1px solid #fff;
            color: #fff;
            font-size: 14px;
            outline: 0px;
        }
    /*Botón Logueo*/
.btnLogin {
    height: 40px;
    background: #2b9ed8;
    border-radius: 15px;
    border: none;
    font-size: 15px;
    color: #fff;
    font-weight: bold;
    outline: 0px;
}

    .btnLogin:hover {
        background: #D3DEE1;
        outline: 0px;
    }
    
    fieldset {
        border: none;
    }
    /*Responsive*/
    @media (max-width: 300px) {
        .login-box {
            width: 96%;
        }
    }

.alert {
    color: #ffd800;
    height: 12px;
}

/*Mensaje de error de credenciales*/
.error {
    position: absolute;
    background: #C0392B;
    top: 28%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 0px 100px;
    border-radius: 10px;

}
.exito {
    position: absolute;
    background: rgba(36, 116, 11, 0.6);
    top: 60%;
    left: 80%;
    transform: translate(-50%,-50%);
    padding: 0px 80px;
    border-radius: 10px;
}
.empty {
    position: absolute;
    background: rgba(225, 70, 54, 0.8);
    top: 40%;
    left:80%;
    transform: translate(-50%,-50%);
    padding: 10px 40px;
    border-radius: 5px;
}

.consulta {
    position: absolute;
    background: rgba(88, 18, 29, 0.80);
    top: 120%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 10px 40px;
    border-radius: 1px;
}
    .consulta p {
        color: #C4CDD0;
        font-size: 15px;
        text-align: center;
    }

    .error p, .exito p, .empty p
    {
        color: #fff;
        font-size: 14px;
        text-align: center;
    }
div.center {
    text-align: center;
}
.btnsalir {
    height: 40px;
    background: #2a3f54;
    border: none;
    font-size: 13px;
    color: #C4CDD0;
    font-weight: bold;
    outline: 0px;
}
