/* Lead Capture Form Styles */

/* Base Reset */
#lead-capture-form * {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

}

/* Form Container */
#lead-capture-form {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border: 2px solid #15549b;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    
}

/* Flex Layout */
.lead-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;

}

.lead-form .column {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

/* Labels */
#lead-capture-form label {
  font-weight: 600;
  color: #15549b;
  margin-top: 12px;
  margin-bottom: 4px;
}

/* Inputs and Selects */
#lead-capture-form input,
#lead-capture-form select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

#lead-capture-form input:focus,
#lead-capture-form select:focus {
  border-color: #ff399b;
  outline: none;
}

/* Submit Button */
#lead-capture-form button[type="submit"] {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  color: #002157;
  background: #ffc107;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#lead-capture-form button[type="submit"]:hover {
  opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .lead-form {
    flex-direction: column;
    gap: 10px;
  }
  .lead-form .column {
    flex: 1 1 100%; /* ✅ Add this line for full width on mobile */
  }

  #lead-capture-form {
    padding: 8px;
  }

  #lead-capture-form button[type="submit"] {
    font-size: 16px;
  }
}
