
    body {
      font-family: Arial;
      background: #f5f5f5;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    .logo{
      width: 80px;
    }
    .login-box {
      background: white;
      width: 300px;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px #0002;
    }
    .login-box h2{
        text-align: center;
    }
    .login-box img{
      width: 80px;
      display: block;
      margin: 0 auto;
    }
    input {
      width: 93%;
      padding: 10px;
      margin-top: 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }
    input:focus{
       outline: none;       /* Remove o contorno azul/padrão */
      box-shadow: none;    /* Remove sombras aplicadas por navegadores/frameworks */
    }
    button {
      width: 100%;
      padding: 10px;
      margin-top: 15px;
      background: #ff6a00;
      border: none;
      color: white;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
    }
    button:focus{
      outline: none;
    }
    .erro {
      color: red;
      margin-top: 10px;
      text-align: center;
      font-size: 14px;
    }
