a.back-home {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, rgb(79, 96, 112), rgb(38, 51, 66));
  border: none;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
a.back-home:hover {
  background: linear-gradient(135deg, rgb(79, 96, 112), rgb(38, 51, 66));
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}


.form-container {
  padding: 0 2rem;
  margin-top: 20px;
}

.row {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-section {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.form-section:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


/* Mobile responsive */
@media (max-width: 900px) {
  .row {
    flex-direction: column;
  }
  .col {
    width: 100%;
  }
}


  form input, form select, form textarea {
    width: 100%;
    padding: 6px;
    margin-bottom: 12px;
    box-sizing: border-box;
  }

  h2 {
    text-align: center;
    margin-top: 0;
  }

  #SubmitAll {
    display: block;
    margin: 30px auto;
    padding: 10px 20px;
    font-size: 1rem;
  }
