/**
 * Public Report Form Styles - Young Heroes Theme
 * Clean gradient background with Young Heroes branding
 */

body {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE5B4 100%);
  min-height: 100vh;
}

.divider {
  height: 3px;
  width: 60px;
  background: linear-gradient(to right, #FFED4E, #FFD700);
  border-radius: 2px;
}

.form-check-card .form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-check-card .card {
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid #dee2e6;
}

.form-check-card .card:hover {
  border-color: #FFED4E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 237, 78, 0.3);
}

.form-check-card input:checked + label .card {
  border-color: #FFED4E;
  background: linear-gradient(135deg, rgba(255, 237, 78, 0.15), rgba(255, 215, 0, 0.15));
}

.form-section {
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.badge {
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
}
