
#loginPageDiv {
    /*height: 550px;
    min-width: 1150px;*/
}

#loginBkg {
    background: transparent url(../images/vbridges/login_bkg.png) 0 0
    no-repeat;
    width: 100%;
    height: 95px;
    top: 0;
    left: 0;
    position: absolute;
}

#loginHdr {
    height: 96px;
    font-family: arial;
    background: transparent url(../images/vbridges/login_bkg_hdr.png) 0 0
    repeat-x;
}

#loginMessages {
    margin-top: 15px;
    width: 100%;
}

.verde-header-logo {
    background: transparent url("../images/vbridges/Verde_VDI_logo.png") no-repeat
    center center;
    width: 216px;
    height: 63px;
    top: 35px;
    left: 55px;
    position: absolute;
}

footer {
    position: fixed;
    height: 100px;
    bottom: 0;
    width: 100%;
}

.logo-title-version{
    text-transform: uppercase;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    text-align: right;
    margin-right: 5px;
    letter-spacing: 1px;
}


.body-background.customui{
    background-image: url('../../api/image/background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.verde-logo.customui{
    background-image: url('../../api/image/logo.png');
}

.verde-header-logo.customui{
    background-image: url('../../api/image/logo.png');
}

.home .body-background.customui, .client .body-background.customui {
    background-image: none;
}

.loader-container{
    width: 100%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-text{
    display: block;
    margin-left: 15px;
    font-size: 18px;
    letter-spacing: 2px;
    color: #555;
}

.loader {
    border: 6px solid #f3f3f3; /* Light grey */
    border-top: 6px solid #555; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden-loading {
    display: none!important;
}