/* ─── Base Reset & Global — shared by all pages ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; background: #060610; color: #fff; }
img { display: block; max-width: 100%; }
a { transition: color 0.2s; }

/* ─── Form Elements ─── */
input, textarea {
  background: #0e1428;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
input:focus, textarea:focus { border-color: rgba(37,99,235,0.7); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.35); }
textarea { resize: vertical; min-height: 140px; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #060610; }
::-webkit-scrollbar-thumb { background: #2563eb; border-radius: 3px; }
