/* Contact form specific styles */

/* Flash messages */
#flash-container {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
}

#flash-container.hidden {
  display: none;
}

#flash-container.flash-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

#flash-container.flash-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* File upload error messages */
#file-name-display {
  margin-top: 10px;
  padding: 8px;
  font-size: 14px;
}

#file-name-display.error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  padding: 10px;
}

/* Submit button disabled state */
.btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form section headers */
.form-section-header {
  margin-bottom: 20px;
}

.form-section-header h2 {
  color: white;
  margin-bottom: 5px;
}

.required {
  color: #ffa500;
  font-size: 13px;
  font-style: italic;
}

