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

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

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

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

.free-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e8f5e9;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-top: 1rem;
}

.free-tier-badge .badge {
  background: #4caf50;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.85rem;
}

.signup-benefits {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.signup-benefits h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.signup-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.signup-benefits li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkmark {
  color: #4caf50;
  font-weight: bold;
}

.form-section {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-section h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group small {
  display: block;
  color: #666;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.required {
  color: #d32f2f;
}

.scope-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.2s;
}

.radio-label:hover,
.checkbox-label:hover {
  border-color: #1976d2;
}

.radio-label input,
.checkbox-label input {
  margin-top: 0.25rem;
}

.radio-label span,
.checkbox-label span {
  font-weight: 500;
}

.radio-label small {
  display: block;
  color: #666;
  font-size: 0.85rem;
}

.location-search {
  position: relative;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

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

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

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

.selected-location {
  margin-top: 0.5rem;
}

.selected-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e3f2fd;
  color: #1976d2;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.clear-selection {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0 0.25rem;
}

.volunteer-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

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

.form-actions .btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

.form-note {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.form-error {
  background: #ffebee;
  color: #c62828;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1rem;
}

.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1rem;
}

.upgrade-note {
  background: #fff3e0;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.upgrade-note h4 {
  margin-top: 0;
  color: #e65100;
}

.upgrade-note ul {
  margin: 0;
  padding-left: 1.5rem;
}

.upgrade-note li {
  margin-bottom: 0.5rem;
}

/* Thank you page */
.nonprofit-thankyou-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.thankyou-icon {
  margin-bottom: 1.5rem;
}

.checkmark-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #4caf50;
  color: white;
  font-size: 3rem;
  border-radius: 50%;
}

.next-steps {
  text-align: left;
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.next-steps h3 {
  margin-top: 0;
}

.next-steps ol {
  margin: 0;
  padding-left: 1.5rem;
}

.next-steps li {
  margin-bottom: 0.75rem;
}

.contact-note {
  color: #666;
  margin: 2rem 0;
}

.return-link {
  margin-top: 2rem;
}
