/* Deepwater Design portal — clean, professional, matches agency tone */
:root {
  --dwd-deep: #0d2a3a;
  --dwd-teal: #0d4a5c;
  --dwd-accent: #c04a27;
  --dwd-bg: #f4f6f7;
  --dwd-panel: #ffffff;
  --dwd-text: #1a2630;
  --dwd-muted: #5c6d77;
  --dwd-line: #d8dfe2;
  --dwd-radius: 10px;
  --dwd-shadow: 0 6px 24px rgba(13, 42, 58, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--dwd-bg);
  color: var(--dwd-text);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--dwd-teal); }

.site-chrome {
  border-bottom: 1px solid var(--dwd-line);
  background: #fff;
  padding-inline: 24px;
}
.site-chrome__inner {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.site-chrome__brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dwd-deep);
  text-decoration: none;
  font-size: 15px;
}
.site-chrome__brand span { color: var(--dwd-accent); }

.site-chrome__user {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--dwd-muted);
}

main { flex: 1; padding: 48px 24px; }
.container { max-width: 560px; margin-inline: auto; }
.container--wide { max-width: 880px; }

.panel {
  background: var(--dwd-panel);
  border: 1px solid var(--dwd-line);
  border-radius: var(--dwd-radius);
  padding: 32px;
  box-shadow: var(--dwd-shadow);
}

h1 { margin: 0 0 6px; font-size: 26px; color: var(--dwd-deep); font-weight: 700; }
h2 { margin: 0 0 4px; font-size: 18px; color: var(--dwd-deep); }
h3 { margin: 0 0 4px; font-size: 16px; color: var(--dwd-deep); }
.muted { color: var(--dwd-muted); margin: 0; font-size: 13px; }
.lede { margin: 0 0 24px; color: var(--dwd-muted); }

form label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; color: var(--dwd-deep); }
form input[type="email"], form input[type="password"], form input[type="text"] {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--dwd-line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 120ms, box-shadow 120ms;
}
form input:focus {
  outline: 0;
  border-color: var(--dwd-teal);
  box-shadow: 0 0 0 3px rgba(13, 74, 92, 0.12);
}
.form-row { margin-bottom: 18px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 120ms, transform 80ms;
}
.button--primary { background: var(--dwd-accent); color: #fff; }
.button--primary:hover { background: #a63e1e; }
.button--primary:active { transform: translateY(1px); }
.button--secondary { background: transparent; color: var(--dwd-teal); border-color: var(--dwd-line); }
.button--secondary:hover { background: var(--dwd-bg); }
.button--block { display: flex; width: 100%; }

.alert {
  padding: 11px 14px;
  border-radius: 8px;
  background: #fdecea;
  color: #8e2c1e;
  border: 1px solid #f5c2bb;
  font-size: 14px;
  margin-bottom: 18px;
}

.site-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--dwd-line);
}
.site-row:first-child { border-top: 0; }

.login-footer {
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
  color: var(--dwd-muted);
}

footer.site-foot {
  border-top: 1px solid var(--dwd-line);
  padding: 18px 24px;
  color: var(--dwd-muted);
  font-size: 12px;
  text-align: center;
  background: #fff;
}
