body,
html {
  height: 80%;
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('../assets/img/sisab.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background-color: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

/* Customizando as bordas para preto */
.form-control {
  border-color: #000;
  box-shadow: none;
  /* Cor preta */
}

.form-control:focus {
  border-color: #000;
  box-shadow: none;
}

/* Para garantir que as linhas de borda ao redor do input fiquem pretas */
.input-group-text {
  border-color: #000;
  box-shadow: none;
  /* Prevenir que o ícone de input fique verde */
}

/* Se houver algum estilo adicional no Bootstrap aplicando a cor verde, estamos sobrescrevendo */
input.form-control:focus {
  outline: none !important;
  /* Remover qualquer borda adicional */
  box-shadow: none !important;
  /* Eliminar sombras */
  border-color: #000 !important;
  /* Forçar a cor preta */
}

#btn-entrar {
  font-size: 18px;
  border-radius: 5px;
  /* Bordas arredondadas */
  background-color: rgba(0, 123, 255, 0.55);
  /* Azul com 85% de opacidade */
  /* Cor do botão azul */
  color: white;
}

#btn-entrar:hover {
  background-color: rgba(0, 123, 255, 1);
  /* Azul sólido no hover */
}

.login-header {
  text-align: center;
  margin-bottom: 5px;
}

.login-header h3 {
  font-weight: bold;
}

.custom-alert {
  color: red;
  font-weight: bold;
  text-align: center;
}

.footer-text {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

.footer-text a {
  color: #007bff;
  /* Azul padrão para links */
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}