body {
  font-family: Arial, sans-serif;
  background: #ffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: linear-gradient(to right, #e0f0ff, #c0ddff);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

label {
  display: block;
  text-align: left;
  margin-top: 10px;
  font-weight: bold;
  color: #3B3735;
}

input, button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
}

button {
  background: #3B3735;
  color: white;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 18px;
  margin: 20px auto 0;
  display: block;
  width: 80%; /* Aqui você controla o tamanho do botão */
  max-width: 300px; /* Limita para não ficar muito grande em telas grandes */
}
button:hover {
  background: #2a2625;
}

#mensagem {
  margin-top: 15px;
  font-weight: bold;
}
