/* Membership Form Styles */

.form-wrapper {
  max-width: 900px;
  margin: 40px auto;
}

.form-wrapper h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

/* Form Sections */
.form-section {
  margin-bottom: 40px;
}

.form-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

/* Form Rows */
.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

/* Form Fields */
.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.form-field input,
.form-field select {
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  font-family: inherit;
  background: transparent;
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: #999;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 25px;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-group label {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* reCAPTCHA Placeholder */
.recaptcha-placeholder {
  margin: 30px 0;
  padding: 15px;
  border: 1px solid #ddd;
  display: inline-block;
}

.recaptcha-placeholder label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.recaptcha-placeholder input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Submit Button */
.form-submit {
  margin-top: 30px;
  text-align: center;
}

.submit-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 15px 60px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #333;
}

.submit-btn:active {
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-wrapper h2 {
    font-size: 20px;
  }
  
  .form-section h3 {
    font-size: 16px;
  }
  
  .submit-btn {
    width: 100%;
    padding: 15px 30px;
  }
}