.sponsor-signup-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.sponsor-signup-header {
  text-align: center;
  margin-bottom: 2rem;
}

.sponsor-signup-header h2 {
  margin-bottom: 0.5rem;
}

.sponsor-signup-header .lead {
  color: #666;
  font-size: 1.2rem;
}

.sponsor-signup-form .form-section {
  background: #f9f9f9;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.sponsor-signup-form .form-section h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #333;
}

.sponsor-signup-form .form-group {
  margin-bottom: 1rem;
}

.sponsor-signup-form .form-row {
  display: flex;
  gap: 1rem;
}

.sponsor-signup-form .form-row .form-group {
  flex: 1;
}

.sponsor-signup-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.sponsor-signup-form input,
.sponsor-signup-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.sponsor-signup-form input:focus,
.sponsor-signup-form textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.search-results {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 250px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  width: calc(100% - 2px);
}

.search-result-item {
  padding: 0.75rem;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.search-result-item:hover {
  background: #f5f5f5;
}

.search-result-item:last-child {
  border-bottom: none;
}

.no-results {
  padding: 0.75rem;
  color: #666;
  font-style: italic;
}

.form-group {
  position: relative;
}

.community-info {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border-radius: 4px;
  display: none;
}

.community-found {
  background: #d4edda;
  color: #155724;
}

.community-not-found {
  background: #fff3cd;
  color: #856404;
}

.pricing-section {
  text-align: center;
  background: #e8f4fd !important;
}

.price-display {
  margin-bottom: 0.5rem;
}

.price-display .price {
  font-size: 3rem;
  font-weight: bold;
  color: #007bff;
}

.price-display .period {
  font-size: 1.2rem;
  color: #666;
}

.price-note {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.form-actions {
  text-align: center;
  margin-top: 1.5rem;
}

.btn-primary {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 4px;
  cursor: pointer;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 4px;
  display: none;
}

@media (max-width: 600px) {
  .sponsor-signup-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}
