﻿body {
    background: url("/imagenes/background-login-3.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

body:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: 1;
}

body > form {
    z-index: 2;
}

.content-login {
    background-color: white;
    display: flex;
    width: 800px;
    height: 400px;
    border-radius: 5px;
}

.data-login {
    display: block;
    width: 50%;
    padding: 10px;
    padding-top: 50px;
}

    .data-login > h1 {
        font-size: 2rem;
        margin: 10px;
    }

    .data-login > .row {
        margin-bottom: 0px;
    }

        .data-login > .row > .input-field {
            padding-left: 0px;
        }

    .data-login label.active {
        color: #077BBD !important;
    }

    .data-login i.active {
        color: #077BBD !important;
    }

.logueoErroneo {
    position:absolute;
    margin-left: 45px;
    padding-bottom: 15px;
    color: red;
    font-weight: bold;
}

.action-buttons {
    margin-top: 20px;
    padding: 0px 10px;
    text-align: end;
}

.cover {
    position: relative;
    background-image: url(/imagenes/cover-login.jpg);
    background-position: right;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    border-radius: 0px 5px 5px 0px;
}

    .cover:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0,0,0,0.65);
        border-radius: 0px 5px 5px 0px;
        z-index: 1;
    }

    .cover > img {
        width: 200px;
        z-index: 2;
    }

    .cover > h3 {
        color: white;
        z-index: 2;
        margin-top: 10px;
    }

.checkbox-blue[type="checkbox"].filled-in:checked + span:not(.lever):after {
    border: 2px solid #077BBD;
    background-color: #077BBD;
}

.erroneo {
    color: #f70505 !important;
}

input:focus {
    border-bottom: 1px solid #077BBD;
    box-shadow: 0 1px 0 0 #077BBD;
}

.button-href {
    margin-left: 41%;
    margin-top: 2%;
}

#alert_desarrollo {
    position: absolute;
    left: 0;
    top: 0;
    background-color: red;
    color: white;
    z-index: 99;
    font-size: 1rem;
    width: 150px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 15px;
    text-transform: uppercase;
    margin-top: 5px;
    margin-left: calc(50% - 60px);
    user-select: none;
}

.icon {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
}

.no-seleccionar {
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Versión sin prefijo, actualmente compatible con Chrome y Opera */
}