.modern-form {
  max-width: 500px;
  margin: 2rem 0 2rem 1rem;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.form-actions {
  text-align: center;
}

.form-actions button {
  background-color: #007BFF;
  color: white;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-actions button:hover {
  background-color: #0056b3;
}
.info-text {
  font-family: Arial, sans-serif;
  font-size: 1.1rem; /* aumenta la dimensione del testo */
  line-height: 1.6;
  margin: 1.5rem 1rem;
  color: #222;
}

.btn-grande {
  padding: 10px 20px;
  font-size: 16px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: rgb(19, 97, 84); /* verde */
  color: white;                      /* testo bianco */
  border: none;                      /* rimuove il bordo standard */
  border-radius: 5px;                /* angoli arrotondati, opzionale */
  cursor: pointer;                   /* cambia il cursore al passaggio */
}