html, body {
  height: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.background-image {
  background-size: cover; /* Assicura che l'immagine copra l'intera sezione */
  background-position: center; /* Centra l'immagine */
  background-repeat: no-repeat; /* Evita che l'immagine si ripeta */
  height: 100vh; /* Imposta l'altezza della sezione al 100% della finestra del browser */
  position: relative; /* Aggiunto per consentire l'uso di ::before */
}

.background-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Aggiunge una patina nera */
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2; /* Assicura che il contenuto sia sopra la patina nera */
}

.credits {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  font-size: 12px;
  z-index: 3;
}

.bg-white {
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}

input:focus {
  border-color: #555;
  outline: none;
}

button,
.btn {
  font-size: 1em;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  margin: 0 auto;
}

button {
  width: 200px;
}

.btn-primary {
  background-color: #D8001B;
  color: #fff;
}

.btn-primary:hover {
  background-color: #ef1b34;
}

.btn-outline-primary {
  background-color: transparent;
  color: #D8001B;
  border: 2px solid #D8001B;
}

.btn-outline-primary:hover {
  background-color: #D8001B;
  color: #fff;
  border-color: #D8001B;
}

.btn-danger {
  background-color: #fc5c47;
  color: #000;
}

.btn-danger:hover {
  background-color: #ff8878;
}

.bg-red-caen {
  background-color: #D8001B;
}

.red-caen {
  color: #D8001B;
}

/** Accounts template **/
.suggestion-item:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}