/* src/styles.css */
:root {
  --ink: #0a1322;
  --ink-2: #101d33;
  --gold: #c9a227;
  --gold-bright: #e9c75d;
  --ivory: #f7f3e9;
  --paper: #fcfaf4;
  --slate: #94a0b5;
  --line: #e5dfcb;
  --red: #c0392b;
  --font-display:
    "Fraunces",
    Georgia,
    serif;
  --font-body:
    "Inter",
    system-ui,
    sans-serif;
  --radius: 14px;
}
* {
  box-sizing: border-box;
}
html,
body,
#root {
  margin: 0;
  height: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(
      ellipse at top,
      rgba(201, 162, 39, 0.07),
      transparent 55%);
}
.screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.center {
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.muted {
  color: #5b6575;
  font-size: 14px;
}
.body-text {
  color: #5b6575;
  font-size: 15px;
  line-height: 1.6;
  margin: 12px 0 0;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
}
.login-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 24px 60px -28px rgba(10, 19, 34, 0.4);
  text-align: center;
}
.login-logo {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 18px;
  display: block;
}
.login-card .eyebrow {
  margin-bottom: 20px;
}
.login-card form {
  text-align: left;
}
.field {
  display: block;
  margin-bottom: 14px;
}
.field span {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  outline: none;
}
.field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}
.error {
  color: var(--red);
  font-size: 13.5px;
  margin: 0 0 12px;
}
.btn {
  width: 100%;
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  background: var(--gold);
  border: none;
  border-radius: 9px;
  cursor: pointer;
  box-shadow: 0 8px 24px -8px rgba(201, 162, 39, 0.55);
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
}
.appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(10, 19, 34, 0.95);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}
.appbar-logo {
  height: 34px;
  display: block;
}
.btn-ghost {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-bright);
  background: transparent;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
}
.dashboard {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px -18px rgba(10, 19, 34, 0.25);
}
.dash-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  color: var(--ink);
  margin: 4px 0 10px;
}
.footer-note {
  text-align: center;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.7;
  padding: 20px;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
