/* Reel Free Recall Page Styles */

:root {
  --bg: #f6f8f9;
  --card: #ffffff;
  --text: #0f0f0f;
  --muted: #555;
  --line: #e5e7eb;

  --brand: #18b19c;
  --brand-dark: #0f7f71;
  --brand-soft: #e9faf7;

  --warning-bg: #74bdb3;
  --warning-border: #18b19c;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --max-width: 1100px;
}

/* Base */

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.recall-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px 60px;
}

/* Hero */

.hero {
  background: #0f0f0f;
  color: white;
  border-radius: 24px;
  padding: 36px 28px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 14px;
}

.hero__lead {
  color: #d1d5db;
  font-size: 15px;
}

/* Notices */

.notice {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 28px;
}

.notice h2 {
  margin-top: 0;
  font-size: 20px;
}

/* Sections */

.form-section {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

/* Info box */

.info-box {
  background: #f9fafb;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 12px;
  margin-top: 16px;
}

/* Grid */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.form-field--full {
  grid-column: span 2;
}

/* Fields */

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.form-field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(24,177,156,0.15);
}

.field-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

/* Images */

.image-reference {
  margin-top: 26px;
}

.image-reference__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

.image-reference__item img {
  width: 100%;
  border-radius: 12px;
}

.image-reference__item figcaption {
  font-size: 12px;
  text-align: center;
  margin-top: 6px;
  color: var(--muted);
}

/* Agreement */

.agreement-box {
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
}

.form-checkbox input {
  margin-top: 4px;
}

/* Support note */

.support-note {
  background: var(--brand-soft);
  border: 1px solid #c7f0ea;
  border-radius: 12px;
  padding: 20px;
}

/* Submit section */

.submit-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.form-actions {
  display: flex;
  justify-content: center;
}

button[type="submit"] {
  background: linear-gradient(135deg, #18b19c, #0f7f71);
  color: white;
  border: none;
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(24,177,156,0.25);
}

button[type="submit"]:hover {
  opacity: 0.9;
}

.form-status {
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .image-reference__grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 22px;
  }
}