:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400; 
  background-color: #242424;  
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
}


#app{   
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;  
  align-items: center;      
}



.login {   
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: aliceblue;
  gap: 15px;  
}

/*======================================================*/
/*======================================================*/


  input, select{
    width: 100%;
    height: 32px;
    background-color: #fff;
    border: 1px solid #ccc;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 3px;    
  }

  button { 
    height: 34px;
    cursor: pointer;
    border: none;
    background-color: #424242;  
    border-radius: 4px;
    color: #fff;
    font-size: 0.8rem;  
  }
 

   .erros{    
    font-size: 1.1rem;  
    color: #f00;
  }

  .btn { 
    height: 34px;
    cursor: pointer;
    border: none;
    background-color: #424242;  
    border-radius: 4px;
    color: #fff;
    font-size: 0.8rem;  
    box-shadow: rgba(0, 0, 0, 0.26) 1px 2px 2px, rgba(0, 0, 0, 0.23) 0px 2px 2px;
    transition: box-shadow 0.3s ease-in-out;
  }


  .btn:hover { 
    box-shadow: rgba(0, 0, 0, 0.26) 1px 2px 2px, rgba(0, 0, 0, 0.23) 0px 2px 2px;
  }