

.landing{
  width: 100vw;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;


  .container{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    

    > img{
      margin: 0 auto;
      display: block;
      width:600px;
    }
  }

  .logo{
    margin-bottom: 2rem;
    .typing > span{
      color:#0000FF;

    span:nth-child(1){
      margin-right:-9px
    }
    
    span:nth-child(2){
      margin-left:-9px
    }
    }
  
  }


  .login{
    opacity: 0;
    visibility: hidden;
    background:rgba(255, 255, 255, 0.145);
    border-radius: 0px;
    backdrop-filter: blur(5px);
    width: 242px;
    /* padding: 15px 15px 5px 15px; */
    display: flex;
    flex-direction: column;
    gap:10px;
    margin: 0 auto;
    /* border: 4px solid #333; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    font-size: 12px;
    text-align: center;

    label{
      display: inline-block;
      width: 50px;
      color:#fff;
      font-size: 14px;  
      font-weight: 400;
      padding: 0.5rem 0.5rem;
      background: #333;
      border: 1.5px solid #333;
    }

    > div{
      font-weight: 500;
      display: flex;
      align-items: center;
      /* gap:10px; */
    }

    input{
      flex: 1;
      width: 100%;
      outline:none;
      /* max-width: 190px; */
      padding: 0.5rem 1rem;
      border-radius: 0;
      background: rgb(229, 229, 229);
      border: 1.5px solid #333;
      color: #333;
      font-size: 14px;
      /* border: none; */
      &::placeholder {
        font-size: 14px;
        color: #999;
      }
    }

    button{
      font-size: 14px;
      padding: 0.6rem 0.5rem;
      background: #ff5a24;
      border: none;
      color:white;
      font-weight: bold;
      border-radius: 4px;
      cursor: pointer;
      /* margin-top: 10px; */

      &:disabled{
        background: #333;
        cursor: not-allowed;
        
      }

      

    }

    button:hover{
      background: #c74012;
      cursor:pointer;

      &:disabled{
        background: #333;
        cursor: not-allowed;
        
      }
      
    }
  }
}


.login__status{
  white-space: nowrap;
}
.login__status.is-error{
  color: red;
  
}

/* Mobile view */
@media (max-width: 768px) {
  


  


  .container{

    > img{
      width:250px !important;
    }
  }
  
}
