/* Form response styling */
.form-response {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-weight: 500;
}

.form-response.success {
  background-color: rgba(76, 175, 80, 0.15);
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
}

.form-response.error {
  background-color: rgba(244, 67, 54, 0.15);
  color: #c62828;
  border-left: 4px solid #c62828;
}

/* Form loading state */
.fa-spinner {
  margin-right: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fa-spin {
  animation: spin 1s infinite linear;
}
