/* === ALERTS PAGE ===
   This file intentionally does NOT set html/body backgrounds — base.css supplies the universal background layer.
*/

/* Layout + spacing
   Use 72px top padding to clear the fixed navbar (68px) + breathing room.
*/
.alerts-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 72px 20px 80px;
  min-height: calc(100vh - 80px);
  background: transparent;
}

/* Box */
.alerts-box {
  width: 100%;
  max-width: 850px;
  background: rgba(0, 0, 0, 0.55); /* translucent panel on top of base background */
  padding: 36px;
  border-radius: 14px;
  color: #e8eef6;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  animation: fadeUp 0.8s ease-out forwards;
  transform: translateZ(0);
}

.alerts-box h1 {
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: #fff;
}

.alerts-box .lead {
  margin-bottom: 20px;
  color: #cbd5e1;
}

/* Legal articles */
.legal-article {
  margin: 18px 0;
}

.legal-article h2 {
  color: var(--accent, #4db8ff);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.legal-article p {
  color: #d1d9e3;
  line-height: 1.7;
}

/* Divider */
.divider {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Form */
.report-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.report-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #dbe9f7;
}

/* Inputs */
.report-form input,
.report-form textarea,
.report-form select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px;
  color: #fff;
  font-size: 0.95rem;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

/* Focus states (accessibility) */
.report-form input:focus,
.report-form textarea:focus,
.report-form select:focus,
.report-form button:focus,
.btn:focus,
.btn-outline:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(77, 184, 255, 0.12);
  border-color: var(--accent, #4db8ff);
}

/* Buttons */
.btn {
  background: var(--accent, #4db8ff);
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  color: #061726;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.12s ease;
}

.btn:hover {
  background: #2999e6;
  transform: translateY(-2px);
}

/* Outline / link button */
.btn-outline {
  display: inline-block;
  border: 2px solid var(--accent, #4db8ff);
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--accent, #4db8ff);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.22s ease, transform 0.12s ease;
}

.btn-outline:hover {
  background: rgba(77, 184, 255, 0.08);
  transform: translateY(-2px);
}

/* Small note */
.small-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #9fb1c4;
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 820px) {
  .alerts-box {
    padding: 20px;
    border-radius: 12px;
  }

  .alerts-box h1 {
    font-size: 1.6rem;
  }
}