@font-face {
    font-family: 'Lato';
    font-display: swap;
    font-weight: normal;
    font-style: normal;
    src: local('Lato'),
        url('../../s/fn/lato/Lato-Regular.ttf') format('truetype');
        unicode-range: U+000-5FF;
}

html {
    height: 100%;
}

::-webkit-scrollbar {
    width: 6px;
}
  
::-webkit-scrollbar-track {
    background: transparent; 
}
   
::-webkit-scrollbar-thumb {
    background: #EFEFEF; 
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #FFF;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #DDD; 
}

body {
    color: #777777;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    background: #FFF;
}

body {
    color: #777777;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    background: #FFF;
}

.inputLogin {
    box-sizing: border-box;
    color: #777;
    border: 0;
    padding: 14px 16px 14px 16px !important;
    border-radius: 4px;
    background: transparent !important;
    margin: 0 0 20px 0 !important;
    border: 1px solid #DDD !important;
    width: 100%;
    font-family: 'Lato', sans-serif;
}

.inputLogin:focus {
    outline: none !important;
    background: #FCFCFC !important;
    border: 1px solid #DDD !important;
    font-family: 'Lato', sans-serif;
}

.inputLogin:active {
    outline: none !important;
    background: #FCFCFC !important;
    border: 1px solid #DDD !important;
}

.inputCode {
    width: 91px;
}

.login-container {
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.login-container-center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 220px;
}

.login-icon-container {
    position: relative;
    width: 220px;
    height: 147px;
    transition: transform .2s;
    margin: 20px auto 20px auto;
}

.login-icon-container:hover {
    transform: scale(1.05);
}

.login-icon {
    font-size: 120px;
    width: 128px;
    height: 128px;
    line-height: 148px;
    margin: 0 auto;
    text-align: center;
    border-radius: 100%;
    color: #DDD;
    background-color: #FEFEFE;
    border: 10px solid #DDD;
    overflow: hidden;
    z-index: 0;
}

.login-icon-lock {
    position: absolute;
    top: 0px;
    right: 36px;
    background-color: #DDD;
    color: #777;
    width: 42px;
    height: 42px;
    line-height: 40px;
    border-radius: 100%;
    z-index: 1;
    font-size: 24px;
}

.btnLogin {
    position: relative;
    top: -1px;
    border: 0px solid #1976D2;
    color: #FFF;
    background: #1976D2;
    border-radius: 2px;
    margin: 0 0 0 15px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    width: 110px;
    height: 46px;
    text-align: center;
}

.btnLogin:hover {
    color: #FFF;
    background: #2196F3;
}

.btnLogin:focus {
    outline: none;
    color: #888;
    background: #777;

}

.loginInform {
    margin: 0 0 20px 0;
    padding: 20px;
    background: #EFEFEF;
    color: #777;
    font-size: 12px;
    border-radius: 4px;
    border-left: 2px solid #DDD;
    animation-name: blink ;
    animation-duration: .4s ;
    animation-timing-function: step-end ;
    animation-iteration-count: infinite ;
    animation-direction: alternate ;
  }  

@keyframes blink { 
    0% { border-color: #DDD; }
    50% { border-color: #f44336; } 
    100% { border-color: #610b05; } 
}