/* Contenitore generale del form */
#gsoft-edr-form {
  background-color: #f8f9fa;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

/* Sezioni del form */
#gsoft-edr-form header {
  font-weight: bold;
  font-size: 1.2rem;
  border-bottom: 2px solid #0073aa;
  padding-bottom: 5px;
  margin-bottom: 20px;
  color: #0073aa;
}

/* Campi input */
#gsoft-edr-form .form-control {
  border-radius: 4px;
  transition: border-color 0.2s;
  font-size: 0.95rem;
}

/* Al focus */
#gsoft-edr-form .form-control:focus {
  border-color: #0073aa;
  box-shadow: none;
}

/* Label */
#gsoft-edr-form label {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: #333;
}

/* Pulsante submit */
#gsoft-edr-form button[type="submit"] {
  background-color: #0073aa;
  border: none;
  color: white;
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 5px;
  margin-top: 15px;
  transition: background-color 0.3s;
}

#gsoft-edr-form button[type="submit"]:hover {
  background-color: #005177;
}

/* Messaggi di ritorno */
#gsoft-edr-form .gsoft-edr-messages {
  margin-top: 15px;
  font-weight: 600;
  font-size: 0.95rem;
}

#gsoft-edr-form .success-msg {
  color: #28a745;
}

#gsoft-edr-form .error-msg {
  color: #dc3545;
}

/* Per spaziatura migliorata */
#gsoft-edr-form .form-group {
  margin-bottom: 1rem;
}

#gsoft-edr-form .invalid-feedback {
  font-size: 0.85rem;
  margin-top: 4px;
}

