:root {
  --orange-neon: #ff5f00;
  --black: #000000;
  --input-bg: #0a0a0a;
  --text-white: #eeeeee;
}

body {
  background-color: var(--black);
  color: var(--text-white);
  margin: 0;
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  overflow: hidden;
}

.top-bar {
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  padding: 25px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  box-sizing: border-box;
}

.status-icon {
  font-size: 1.8rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
}

.login-box {
  font-family: 'Fira Code', monospace;
  color: var(--orange-neon);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 14px;
  border: 1px solid var(--orange-neon);
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

.login-form {
  width: 100%;
  max-width: 400px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  color: var(--orange-neon);
  margin-bottom: 10px;
}

.form-group input {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid #1a1a1a;
  padding: 15px;
  color: var(--text-white);
  font-family: 'Fira Code', monospace;
  outline: none;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: #333;
}

.submit-btn {
  width: 100%;
  background: none;
  border: 1px solid var(--orange-neon);
  color: var(--orange-neon);
  font-family: 'Fira Code', monospace;
  padding: 15px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.2s;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--orange-neon);
  color: var(--black);
}

:root {
  --orange-neon: #ff5f00;
  --black: #000000;
  --terminal-bg: #050505; 
  --border-color: #1a1a1a;
  --text-white: #eeeeee;
}

::selection {
  background: var(--orange-neon);
  color: var(--text-white);
}

body {
  background-color: var(--black);
  color: var(--text-white);
  margin: 0;
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  padding: 25px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.status-icon {
  font-size: 1.8rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
}

.login-box {
  font-family: 'Fira Code', monospace;
  color: var(--orange-neon);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 14px;
  border: 1px solid var(--orange-neon);
}

.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.terminal-window {
  width: 100%;
  max-width: 800px;
  height: 450px;
  background-color: var(--terminal-bg);
  border: 1px solid var(--border-color);
  padding: 25px;
  display: flex;
  flex-direction: column;
  font-family: 'Fira Code', monospace;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  position: relative;
}

.terminal-window::before {
  content: " ";
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

#terminal-output {
  font-size: 0.85rem;
  color: #bbb;
  overflow-y: auto;
  flex: 1;
  margin-bottom: 15px;
  white-space: pre-wrap;
  scrollbar-width: thin;
  scrollbar-color: var(--orange-neon) transparent;
}

.input-line {
  display: flex;
  gap: 12px;
  align-items: center;
}

.prompt {
  color: var(--orange-neon);
  font-weight: bold;
}

#terminal-input {
  background: none;
  border: none;
  color: var(--text-white);
  font-family: 'Fira Code', monospace;
  font-size: 0.85rem;
  outline: none;
  flex: 1;
}
