/* File: mhi2025.css */

/* Base form layout */
form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  /* Headings */
  h2, h5 {
    color: #2c3e50;
  }
  
  /* Form labels */
  label.form-label {
    font-weight: 500;
    color: #34495e;
  }
  
  /* Form controls */
  input.form-control,
  select.form-select {
    border-radius: 8px;
    transition: border-color 0.2s ease;
  }
  
  input.form-control:focus,
  select.form-select:focus {
    border-color: #16a085;
    box-shadow: 0 0 0 0.1rem rgba(22, 160, 133, 0.25);
  }
  
  /* Buttons */
  button[type="submit"],
  .btn-success {
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
  }
  
  /* Section divider */
  hr {
    margin: 2rem 0;
    border-top: 1px solid #ddd;
  }
  
  /* Mobile adjustments */
  @media (max-width: 576px) {
    form {
      padding: 1rem;
    }
  }
  