

.landing{
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  background-color: white;


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

  .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: 4px;
    backdrop-filter: blur(5px);
    width: 300px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap:1rem;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

    label{
      display: inline-block;
      width: 30px;
    }
    > div{
      display: flex;
      align-items: center;
      gap:1rem;
    }

    input{
      flex: 1;
      /* width: 100%; */
      padding: 0.5rem 1rem;
      border-radius: 4px;
      border: none;
    }

    button{
      
      padding: 0.5rem 0.5rem;
      background: #0000FF;
      border: none;
      color:white;
      font-weight: bold;
      border-radius: 4px;
      cursor: pointer;

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


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

