* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #09090b;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fafafa;
}
.header {
  background: #09090b;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-bottom: 1px solid #27272a;
}
.header .center svg { display: none; }
.header .center::after {
  content: "VirtOps AI";
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fafafa;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  width: 100%;
}
.inner-container { text-align: center; }
h1 {
  font-size: 28px;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
p { font-size: 15px; color: #71717a; }
a { color: #a78bfa; text-decoration: none; font-weight: 500; }
a:hover { color: #c4b5fd; text-decoration: underline; }
form { margin-bottom: 20px; }
input[type="password"] {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 10px;
  outline: none;
  color: #fafafa;
  font-family: inherit;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}
input[type="password"]:focus { border-color: #a78bfa; }
input[type="password"]::placeholder { color: #52525b; }
button {
  background: #fafafa;
  color: #09090b;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
  width: 100%;
}
button:hover { background: #e4e4e7; }
button:active { background: #d4d4d8; transform: scale(0.99); }
.alert {
  max-width: 480px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert-error {
  background: #1c1015;
  color: #fca5a5;
  border: 1px solid #7f1d1d;
}
.alert-error::before {
  background: #ef4444;
  content: "\2715";
  color: white;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert-info {
  background: #0c1524;
  color: #93c5fd;
  border: 1px solid #1e3a5f;
}
.alert-info::before {
  background: #3b82f6;
  content: "i";
  color: white;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card {
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 32px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.card p { font-size: 15px; color: #a1a1aa; line-height: 1.6; margin-bottom: 16px; }
.card ul { text-align: left; margin: 12px 0; padding-left: 20px; list-style: disc; }
.card li { padding: 4px 0; font-size: 14px; color: #a1a1aa; }
.card li strong { color: #fafafa; font-weight: 600; }
code {
  display: block;
  background: linear-gradient(to bottom, #18181b 36px, #09090b 36px);
  color: #a1a1aa;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  line-height: 1.8;
  padding: 52px 20px 20px;
  border-radius: 12px;
  border: 1px solid #27272a;
  max-width: 800px;
  width: 100%;
  margin: 20px auto 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}
code::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 20px 0 0 #eab308, 40px 0 0 #22c55e;
  z-index: 2;
}
code::after {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, #09090b, transparent);
  pointer-events: none;
  z-index: 1;
}
.log-footer {
  border-top: 1px solid #27272a;
  padding-top: 10px;
  margin-top: 10px;
}
