/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at center, #0b1220, #020409);
  color: #e5e7eb;
}

/* ================= NAVBAR ================= */
.navbar {
  height: 72px;
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,15,30,0.8);
  backdrop-filter: blur(18px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 14px;
}

.logo small {
  font-size: 10px;
  letter-spacing: 3px;
  opacity: 0.7;
}

.logo-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 20px #ff3b3b;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #e5e7eb;
}

.nav-btn {
  background: linear-gradient(135deg, #ff3b3b, #ff6a6a);
  padding: 10px 18px;
  border-radius: 12px;
}

/* ================= REPORT PAGE ================= */
.report-page {
  position: relative;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

/* Glows */
.bg-glow {
  position: absolute;
  filter: blur(140px);
  opacity: 0.35;
}

.glow-blue {
  width: 480px;
  height: 480px;
  background: #3b82f6;
  top: 20%;
  left: 10%;
}

.glow-red {
  width: 360px;
  height: 360px;
  background: #ff3b3b;
  bottom: 15%;
  right: 15%;
}

/* ================= FORM CARD ================= */
.report-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  background: rgba(10,15,30,0.7);
  border-radius: 20px;
  padding: 48px 56px;
  border: 1px solid rgba(147,197,253,0.25);
  box-shadow:
    0 0 40px rgba(147,197,253,0.25),
    0 30px 60px rgba(0,0,0,0.8);
}

.report-card h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  color: #cbd5f5;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ================= FORM ================= */
.report-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

label {
  font-size: 13px;
  margin-bottom: 6px;
  opacity: 0.9;
}

input,
select,
textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(147,197,253,0.25);
  background: rgba(255,255,255,0.04);
  color: #e5e7eb;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(203,213,245,0.6);
}

textarea {
  resize: vertical;
}

small {
  font-size: 12px;
  opacity: 0.65;
  margin-top: 4px;
}

/* ================= CHECKBOX ================= */
.checkbox-group {
  display: flex;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.85;
}

/* ================= SUBMIT ================= */
.submit-btn {
  margin-top: 10px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff3b3b, #ff6a6a);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow:
    0 0 30px rgba(255,59,59,0.9),
    inset 0 0 12px rgba(255,255,255,0.2);
}
