/* ── Minimal Theme Variables ─────────────────────────────────────────── */
:root {
  --bg:        #09090b;
  --panel:     #18181b;
  --border:    #27272a;
  --accent:    #e4e4e7;
  --green:     #22c55e;
  --red:       #ef4444;
  --text:      #d4d4d8;
  --muted:     #71717a;
}

/* ── Base Reset ─────────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* ── Minimal Form Styles ───────────────────────────────────────────── */
input {
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 4px;
}

input:focus {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

button {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

/* ── Login Layout ───────────────────────────────────────────────────── */
.login-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.login-wrap {
  max-width: 380px;
  padding: 0 20px;
}

.login-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 16px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.field input {
  width: 100%;
}

.btn-login {
  width: 100%;
}

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