﻿.login-panel {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.erp-jumbotron {
    text-align: center;
    padding: 2rem 1rem;
    height: 580px;
    width: 430px;
    left: 15%;
    background-color: #fcfcfc;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px 0 #00000090;
    -moz-box-shadow: 0 0 10px 0 #00000090;
    box-shadow: 0 0 10px 0 #00000090;
    margin-bottom: 0px;
}

    .erp-jumbotron .jumbotron-vcenter,
    .form-container .jumbotron-vcenter {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        width: 100%;
    }

.form-container .jumbotron-vcenter {
    padding: 20px;
}

.jumbotron-vcenter h1 {
    font-size: 28px;
    font-weight: 500;
    color: var(--eff-original-color)
}

.jumbotron-vcenter form {
    width: 100%;
    padding: 0px 40px;
}

.footer .footer-inner {
    left: 0px;
}

    .footer .footer-inner .footer-content {
        background: #E6E6E6;
        left: 0;
        right: 0;
        bottom: 0;
        line-height: 24px;
    }

.login-footer {
    text-align: center;
}

/***************************************************************************/
.container.alt .erp-jumbotron {
    border-radius: 8px 0px 0px 8px;
}

.container {
    background-color: #fff;
    padding: 0px;
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    height: 100%;
    width: 100%;
    max-width: 1390px;
    max-height: 630px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.form-container {
    width: 100%;
    max-width: 500px;
    transition: all 0.6s ease-in-out;
}

.overlay-container {
    flex: 1 1 0%;
    opacity: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 420px;
}

    .overlay-container .image-overlay-container {
        height: 100%;
        display: flex;
        -moz-box-align: center;
        align-items: center;
        -moz-box-pack: center;
        justify-content: center;
        z-index: 1;
        transition: none 0s ease 0s;
    }

        .overlay-container .image-overlay-container:hover {
            opacity: 0.9;
        }

        .overlay-container .image-overlay-container img {
            width: 100%;
            max-width: 890px;
        }

@media (max-width: 990px) {
    .overlay-container {
        display: none;
    }

    .container {
        height: 580px;
        width: 430px;
    }

    .form-container {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 765px) {
    .erp-jumbotron {
        height: 90vh;
        width: 90vw;
    }

    .container {
        height: 90vh;
        width: 90vw;
    }

    .form-container {
        max-width: 100%;
    }

    .jumbotron-vcenter form {
        width: 100%;
        padding: 0px 20%;
    }
}

#btn-login {
    color: #fff;
}