/* public/css/login.css */


/* Para evitar fundo branco no autofill do navegador */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #222 inset !important; /* Cor de fundo desejada */
    -webkit-text-fill-color: #eee !important; /* Cor do texto desejada */
    transition: background-color 5000s ease-in-out 0s; /* Hack para manter a cor */
}
/* Opcional: Se houver estilos para seleções de texto, garanta que não sejam brancas */
input::selection {
  background-color: #1db954; /* Cor de seleção do texto */
  color: #000;
}

body {
  background-color: #000;
  color: #eee;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  box-sizing: border-box;
}

.login-container { /* Renomeado de .container para .login-container */
  max-width: 400px;
  width: 100%;
  background-color: #111;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input {
  background-color: #222;
  color: #eee;
  border: 1px solid #444;
  border-radius: 3px;
  padding: 10px;
  font-size: 14px;
  outline: none;
}

input:focus {
  border-color: #1db954;
}

/* Usei .login-button para evitar conflito com .button-style geral, se quiser */
.login-button { 
  background-color: #1db954;
  color: #000;
  padding: 10px;
  font-size: 14px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background-color: #17a44c;
}

.error { /* Estilo para mensagens de erro */
    color: #ff4d4d;
    text-align: center;
    margin-top: 15px;
}