

/*BOX SIZING*/
*{
    box-sizing: border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    margin:0;
    padding:0;
    list-style: none;
    font-weight: normal;
}

@font-face {
    font-family: 'TradeGothicLTProBdCn20';
    src: url('../fonts/TradeGothicLTProBdCn20.eot');
    src: url('../fonts/TradeGothicLTProBdCn20.eot') format('embedded-opentype'),
         url('../fonts/TradeGothicLTProBdCn20.woff2') format('woff2'),
         url('../fonts/TradeGothicLTProBdCn20.woff') format('woff'),
         url('../fonts/TradeGothicLTProBdCn20.ttf') format('truetype'),
         url('../fonts/TradeGothicLTProBdCn20.svg#TradeGothicLTProBdCn20') format('svg');
}


@font-face {
    font-family: 'TradeGothicLTProCn18';
    src: url('../fonts/TradeGothicLTProCn18.eot');
    src: url('../fonts/TradeGothicLTProCn18.eot') format('embedded-opentype'),
         url('../fonts/TradeGothicLTProCn18.woff2') format('woff2'),
         url('../fonts/TradeGothicLTProCn18.woff') format('woff'),
         url('../fonts/TradeGothicLTProCn18.ttf') format('truetype'),
         url('../fonts/TradeGothicLTProCn18.svg#TradeGothicLTProCn18') format('svg');
}




*{
 user-drag: none; 
user-select: none;
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none;
}
input{
user-select: auto;
-moz-user-select: auto;
-webkit-user-drag: auto;
-webkit-user-select: auto;
-ms-user-select: auto;
    
}


html, body {
  width: 100%;
  height: 100%;
  font-weight: normal;
  color:#000;
  font-family: "TradeGothicLTProBdCn20";
  font-size:13px;
  
  position: relative;
  text-align: left;
  overflow:hidden;
  
  
   text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
   
    
    
}

.app{
   width: 100%;
   height: 100%;
   display: block;
    
}

.main-bg{

    display: block;
    background-color: #fff;
    width: 100%; 
    height: 100%;
    position: fixed;
    top:0;
    left:0;
    
}

.main-bg-container{
    display: block;
    z-index:1;
    background-color: #000;
    position: fixed; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%;
}

.main-bg img{
   position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  margin: auto; 
  min-width: 50%;
  min-height: 50%;
}

.overlay{
    
    position: absolute;
    top:0;
    left:0;
     background:rgba(0, 0, 0,0.9);
    opacity:0.8;
    width:100%;
    height:100%;
    display: none;
   
    

}

.login{
    position: absolute;
    top:50%;
    left:50%;
    margin-left:-250px;
    margin-top:-200px;


    width:500px;
    height:400px;
    display: block;

    overflow: hidden;
    cursor:pointer;
   
   
     background:rgba(0,0,0,0.8);
     
    
    background-size: cover;
     
    box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
    
    font-family:"TradeGothicLTProCn18";
    border-radius: 3px;
}

.form{
    width:100%;
    height:200px;
    padding:40px;
}

.input{
    background: rgba(255,255,255,0.8);
    /*border:4px solid #fff;*/
    border:none;
    width:100%;
    border-radius: 5px;
    color:#000;
    font-size: 30px;
    margin-top:10px;
    height:60px;
    line-height: 60px;
    text-align: center;
    font-family:"TradeGothicLTProCn18";
    
    
}
input:focus { 
    
}
*:focus {
    outline: none;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    rgba(0,0,0,0.4);
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    rgba(0,0,0,0.4);
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    rgba(0,0,0,0.4);
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    rgba(0,0,0,0.4);
}

.output{
    width:100%;
    height:auto;
    font-size: 18px;
    padding:10px;
    font-family:"TradeGothicLTProCn18";
    color:#e20101;
    text-align: center;
}

.button{
    position: absolute;
    bottom:0;
    left:0;
    right:0;
    border:none;
     font-family:"TradeGothicLTProCn18";
    height: 80px;
    width: 100%;
    line-height: 80px;
    font-size: 30px;
    text-align: ;
    float: left;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,1);
    cursor: pointer;
}

.logo{
    width:238px;
    height:62px;
    position: absolute;
    left:50%;
    top:40px;
    margin-left:-119px;
}

.form{
    margin-top:100px;
}





