/* Estilos específicos para a tela de login */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
   /* display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
   background-image: url("../img/telalogin.png");
    background-size: cover;         /* Faz a imagem cobrir toda a tela 
    background-repeat: no-repeat;   /* Evita que a imagem se repita 
    background-position: center;    /* Centraliza a imagem na tela 
    padding: 20px;*/

    margin: 0;
  padding: 0;
  height: 100vh;
  background-image: url("../img/fundo2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  color: #fff;




}

.login-container {
    background-color: rgba(0, 0, 0, 0.65);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  text-align: center;
}

.login-container input {
    
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
  }
  .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 20%;
  }
.logo-container {
    position: flex;
    top: 40px;
    text-align: center;
  }
  .logo {
    max-width: 100%;
  }
  .login-container button {
    width: 100%;
    padding: 12px;
    background-color: #444;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
  }
  .login-container button:hover {
    background-color: #666;
  }

  .input-preto{
    color:rgb(255, 255, 255);
    background-color: black;
  }


h2 {
    margin-bottom: 20px;
}

.error {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Responsividade */
@media (max-width: 480px) {
    .login-container {
        padding: 15px;
    }

    h2 {
        font-size: 20px;
    }

    input, button {
        font-size: 16px;
    }
}
