/* Impostazioni generali */
body {
  background: linear-gradient(180deg, #0b3d91, #1e90ff);
  color: white;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 50px;
}

.container {
  max-width: 800px;
  width: 100%;
  padding: 20px;
  text-align: center;
}

/* Stile dell'icona principale */
.container > svg {
  margin-bottom: 20px;
}

/* Titolo principale */
h1 {
  font-size: 2.5em;
  font-weight: 600;
  margin-bottom: 20px;
}

.applink {
  color: white;
  text-decoration: none;
}
.applink:hover {
  text-decoration: underline;
}

/* Stile comune per i bottoni */
.button {
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1.2em;
  cursor: pointer;
  width: 200px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  transition: all 0.3s ease;
  background-color: white;
  color: #0d6dd7;
}

.button:hover {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

/* Footer */
footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 0.8em;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.logout-link {
  color: white;
  text-decoration: none;
}

.logout-link:hover {
  text-decoration: underline;
}

/* Media query per responsività */
@media (max-width: 600px) {
  .container {
    padding: 10px;
  }

  h1 {
    font-size: 2em;
  }

  .button {
    font-size: 1em;
    padding: 10px 20px;
    width: 180px;
    height: 48px;
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
  }
}
