﻿body {
    background-color: #DDD;
    background-image: url('/content/images/banner-bg.jpg');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

#modalLogin {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#modalContent {
    border: 0;
    background-color: transparent;
}

    #modalContent:before {
        content: "";
        background-color: rgba(175,175,175,.35);
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
        z-index: -1;
        backdrop-filter: blur(5px);
        border-radius: 6px;
    }

#modalHeader {
    text-align: center;
    padding: 0;
    border: none;
}

    #modalBody {
        padding: 0 15px;
        background-color: #FFF;
        box-shadow: 0 0px 25px 2px rgba(0,0,0,.7);
    }

    #modalFooter {
        border: none;
    }

#logoApp {
    height: 180px;
    margin: auto;
}

.logoEmpresa {
    padding: .5em;
    text-align: center;
    border-radius: 6px 6px 0 0px;
    margin: auto;
}

    .logoEmpresa img {
        height: 50px;
    }

@media (min-width: 768px) {
    .modal-sm {
        width: 400px;
    }

    #modalLogin {
        margin: auto;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}
