@import 'https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i';
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700&display=swap');
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    overflow: hidden;
    background: black;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

body > div.ui-loader.ui-corner-all.ui-body-a.ui-loader-default {
    display: none !important;
}

*:focus {
    outline: none;
}
@-webkit-keyframes autofill {
    to {
        color: white;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-transition-delay: 99999s;
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

.field ::selection {
    background: black; /* WebKit/Blink Browsers */
  }
  .field ::-moz-selection {
    background: black; /* Gecko Browsers */
  }

.container {
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
    float: left;
}

.img-cache {
    opacity: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
}

.screen-fpo {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: none;
}

.screen-fpo-img {
    width: 100%;
}

.bg {
    width: 150%;
    height: 150%;
    position: absolute;
    top: -25%;
    left: -25%;
    z-index: 10;
    opacity: 1;
}

.bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(../App_Themes/v3.0/Images/bg.jpg);
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    top: 0;
    left: 0;
}

.login-container {
    width: 900px;
    height: 546px;
    position: absolute;
    top: calc(50% - 273px);
    left: calc(50% - 450px);
}

.login {
    width: 900px;
    height: 546px;
    position: absolute;
    border-radius: 35px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 900;
}

.login-left {
    width: 387px;
    height: 100%;
    overflow: hidden;
    position: absolute;
    background: #0060a8;
    top: 0;
    right: 513px;
}

.login-content {
    width: 246px;
    height: 281px;
    position: absolute;
    top: calc(50% - 200.5px);
    left: calc(50% - 123px);
    font-family: 'Montserrat', sans-serif;
}

.header {
    width: 100%;
    font-size: 32px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.field {
    width: 100%;
    height: 47px;
    position: relative;
    float: left;
}

.username {
    margin-top: 34px;
}

.password {
    margin-top: 34px;
}

.field-label {
    color: white;
    text-transform: uppercase;
    line-height: 1em;
    font-size: 13px;
    font-weight: 600;
}

.field-input {
    width: 100%;
    height: 28px;
    margin-top: 5px;
    font-size: 17.5px;
    color: white !important;
    background: transparent !important;
    border: none;
}

.field-underline {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.field-underline-bar {
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    position: relative;
    float: left;
}

.login-btn {
    width: 186px;
    height: 42px;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    border: 3px solid white;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    line-height: 42px;
    margin: 15px 0 0 28px;
    transition: .2s;
    display:block;
}

.login-btn:hover {
    background: white;
    color: #0060a8;
}

.login-right {
    width: 513px;
    height: 100%;
    background: -moz-linear-gradient(top,  rgba(255,255,255,0.6) 0%, rgba(255,255,255,1) 80%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0.6) 0%,rgba(255,255,255,1) 80%);
    background: linear-gradient(to bottom,  rgba(255,255,255,0.6) 0%,rgba(255,255,255,1) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99ffffff', endColorstr='#ffffff',GradientType=0 );    
    position: absolute;
    top: 0;
    right: 0;
}

.mdesking-logo {
    width: 410px;
    height: 202px;
    position: absolute;
    top: calc(50% - 101px);
    left: calc(50% - 205px);
}



.field-link {
    color: white !important;
    text-transform: uppercase;
    line-height: 1em;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline !important;
}
.field-link:hover {
    color: orange !important;
    cursor: pointer;
}

.login-error {
    color: orange;
    /*line-height: 1em;*/
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin: auto;
}

.modal-background {
    width: 513px;
    height: 100%;
    border-color: #0060a8;
    border-radius: 30px;
    margin:5px;
    padding:5px;
    background:white;
}

.hide {
    display:none;
}