Sponsorship Application

<style>
.shake-form {
  max-width: 700px;
  margin: auto;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 10px;
  font-family: Arial, sans-serif;
}

.shake-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.shake-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.shake-form input, 
.shake-form textarea, 
.shake-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.shake-form button {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: #1e7f7a;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.shake-form button:hover {
  background: #16645f;
}
</style>

<form class="shake-form" method="POST" action="https://formsubmit.co/YOUR_EMAIL_HERE">
  <h2>Sponsor Application</h2>

  <label>Business Name</label>
  <input type="text" name="business_name" required>

  <label>Contact Name</label>
  <input type="text" name="contact_name" required>

  <label>Email</label>
  <input type="email" name="email" required>

  <label>Phone Number</label>
  <input type="text" name="phone">

  <label>Type of Business</label>
  <input type="text" name="business_type">

  <label>What types of events would you like to sponsor?</label>
  <select name="event_interest">
    <option>Community Events</option>
    <option>Weddings</option>
    <option>Birthdays</option>
    <option>Quinceañeras</option>
    <option>Bar / Bat Mitzvahs</option>
    <option>All Events</option>
  </select>

  <label>Sponsorship Budget Range</label>
  <select name="budget">
    <option>$100 – $500</option>
    <option>$500 – $1,000</option>
    <option>$1,000+</option>
  </select>

  <