.form-heading {
    font-size: 28px;
    color: #ffff00;
    font-weight: bold;
  }
  
  .form-subheading {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .form-label {
    font-weight: bold;
    color: #fff;
  }
  
  .form-control {
    background-color: #fff;
    color: #000;
  }
  
  
  
  .submit-btn {
    background-color: #e60000;
    color: #fff;
    padding: 12px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: yellowgreen;
  }
  
  
  
  @media screen and (max-width: 768px) {
  .col-md-6 {
          width: 100%; /* Make columns full width */
          margin-bottom: 20px; /* Add space between stacked columns */
      }
  }