﻿body {
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
}

#loginLoader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(220,220,220,0.7);
    overflow: visible;
    z-index: 5000;
}

#loaderIconHolder {
    width: 50%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loadingText {
    padding-top: 15px;
    font-size: 1.2em;
    text-align: center;
    color: #c41039;
}

#svgLoader {
    overflow: visible;
}

#loaderGroup > path {
    position: relative;
}

#loaderIconPart_1 {
    animation: LOADER-ITEM-1 1.5s ease-in-out infinite;
}

@keyframes LOADER-ITEM-1 {
    0% {
        transform: translateX(0);
    }

    40% {
        transform: translateY(20%);
    }

    100% {
        transform: translateX(0);
    }
}

#loaderIconPart_2 {
    animation: LOADER-ITEM-2 1.5s ease-in-out infinite;
}

@keyframes LOADER-ITEM-2 {
    0% {
        transform: translateX(0);
    }

    70% {
        transform: translateY(20%);
    }

    100% {
        transform: translateX(0);
    }
}

#loaderIconPart_3 {
    animation: LOADER-ITEM-3 1.5s ease-in-out infinite;
}

@keyframes LOADER-ITEM-3 {
    0% {
        transform: translateX(0);
    }

    55% {
        transform: translateY(20%);
    }

    100% {
        transform: translateX(0);
    }
}

#loginContent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px;
    background-color: #f5f5f5;
    z-index: 1200;
}

#mainSection {
    position: absolute;
    padding: 50px 100px;
    top: 0;
    bottom: 0;
    left: 10%;
    opacity: 0;
    transform: translateX(-15px);
    background-color: rgba(231,231,231,0.95);
    z-index: 100;
    transition: all 500ms ease-in-out;
}

#mainImage {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

.page-ready #mainSection {
    opacity: 1;
    transform: translateX(0);
}

#togglepwd {
    position: absolute;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

#languagesHolder {
    position: relative;
    float: right;
    font-size: 22px;
}

#iconLanguages {
    margin-right: 5px;
}

#loginHeader {
    text-align: center;
    color: #555;
    margin: 15px 0;
}

#loginLogoMain {
    width: 300px;
    height: 70px;
    display: inline-block;
    margin: auto;
    margin-bottom: 15px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
}

#loginProductEditionHolder {
    text-align: center;
    font-weight: bold;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

#loginFormHolder {
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-content-div {
    margin-bottom: 15px;
}

#TxtUserName,
#TxtPassword {
    height: 40px;
    font-size: 16px;
    padding: 8px 15px;
    /*background-color: transparent !important;*/
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    border-color: #d8d8d8;
}

input:-webkit-autofill {
    -webkit-text-fill-color: #333;
    -webkit-box-shadow: 0 0 0px 1000px #ececec inset;
}

input:-webkit-autofill {
    -moz-text-fill-color: #333;
    -moz-box-shadow: 0 0 0px 1000px #ececec inset;
}

input:-webkit-autofill {
    -o-text-fill-color: #333;
    -o-box-shadow: 0 0 0px 1000px #ececec inset;
}

#BtLogin {
    width: 100%;
    border: none;
    padding: 15px;
    text-align: center;
    background-color: #1b9ee1;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    outline: none;
    text-transform: uppercase;
}

#forgotpassworddiv {
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-top: 18px;
}

#forgotpassworddivMock {
    display: inline-block;
    margin-top: 40px;
}

#loginCentralLink {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

#btnForgotPassword {
    color: #1b9ee1;
    font-size: 16px;
}

#loginCentralLinkImage {
    width: 150px;
}

#versionHolder {
    position: fixed;
    bottom: 50px;
    right: 50px;
    font-size: 0.95em;
    font-family: monospace;
    font-weight: bold;
}

#errorMsg {
    font-size: 0.95em;
    padding: 10px;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    border-radius: 4px;
    margin-bottom: 15px;
}




#loginFormHolder ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tenant-list-item {
    margin-bottom: 15px;
}

.tenant-btn-login {
    width: 100%;
    border: none;
    padding: 15px;
    text-align: center;
    background-color: #1b9ee1;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    outline: none;
    text-decoration: none;
    white-space: nowrap;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
}
