body {
  margin: 0;
  font-family: Consolas, "Courier New", monospace;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #0d1117;
  color: #d1fae5;
}

.login-card {
  width: min(420px, calc(100vw - 32px));
  padding: 24px;
  border: 1px solid #1f6f43;
  border-radius: 12px;
  background: #000000;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.12);
}

.login-card h1,
.login-card p {
  margin-top: 0;
}

.login-card form {
  display: grid;
  gap: 12px;
}

.login-card input,
.login-card button {
  border: 1px solid #1f6f43;
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  background: #03150b;
  color: #d1fae5;
}

.login-card button {
  cursor: pointer;
}

.terminal-page {
  min-height: 100vh;
  background: #000000;
  color: #22c55e;
}

.terminal-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #124d2c;
}

.terminal-link {
  color: #86efac;
  text-decoration: none;
}

.terminal-output {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
}

.terminal-output pre {
  margin: 0 0 12px;
  white-space: pre-wrap;
  word-break: break-word;
}

.terminal-query {
  color: #bbf7d0;
}

.terminal-result {
  color: #22c55e;
}

.terminal-error {
  color: #f87171;
}

.terminal-input-row {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #124d2c;
  padding-top: 12px;
}

.terminal-input-row input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: inherit;
  font: inherit;
  min-width: 0;
}
