/* =========================
   SelectPath Relocation
   Shared Styles
========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: #111;
  background: #f8fafc;
}

header,
footer {
  background: #0b1220;
  color: #fff;
  padding: 20px;
}
/* =========================
   Header / Logo
========================= */

.site-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #0b1220;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 40px;
  width: auto;
  display: block;
}
.logo-wrap img {
  height: 40px;          /* adjust to taste: 32–44px */
  width: auto;
  display: block;
}

.brand-text {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

header strong {
  font-size: 18px;
}

.nav a {
  margin-right: 16px;
  color: #c7d2fe;
  text-decoration: none;
  font-size: 14px;
}

main {
  max-width: 820px;
  margin: 60px auto;
  padding: 0 20px;
}

h1, h2 {
  font-weight: 600;
}

p {
  line-height: 1.6;
}

.box {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 32px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Forms */

label {
  display: block;
  margin-top: 14px;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  font-family: inherit;
}

button {
  margin-top: 20px;
  padding: 12px 20px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #1d4ed8;
}

footer p {
  font-size: 13px;
  opacity: 0.85;
}