/* Reset básico */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Fundo com imagem */
.background {
  background-image: url('rede eletrica.png'); /* imagem do pôr do sol com torres */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Caixa de login */
.login-container {
  background-color: rgba(255, 255, 255, 0.78); /* leve transparência */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 320px;
}

/* Logo da Copel */
.logo-copel {
  width: 120px;
  margin-bottom: 20px;
}

/* Títulos */
.titulo-principal {
  font-size: 20px;
  color: #f57c00; /* laranja Copel */
  margin-bottom: 10px;
}

h2 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

/* Campos de entrada */
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Botão de login */
button {
  width: 100%;
  padding: 10px;
  background-color: #f57c00;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e65100;
}

/* Mensagem de erro ou sucesso */
.mensagem {
  margin-top: 10px;
  color: red;
  font-size: 14px;
}

/* Link de cadastro */
.cadastro {
  display: block;
  margin-top: 15px;
  color: #f57c00;
  text-decoration: none;
  font-size: 14px;
}

.cadastro:hover {
  text-decoration: underline;
}