/* Login page styles — extracted from login.html inline <style> block (TASK-078) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  background: #0d0d0d;
  color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
.box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 360px;
}
label { display: block; font-size: 12px; color: #888; margin-bottom: 6px; }
input[type=password] {
  width: 100%;
  background: #242424;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 10px 12px;
  color: #f0f0f0;
  font-size: 14px;
  margin-bottom: 16px;
}
input[type=password]:focus { outline: none; border-color: #0066ff; }
button[type=submit] {
  width: 100%;
  background: #0066ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
button[type=submit]:hover { background: #0052cc; }
button[type=submit]:disabled { opacity: 0.6; cursor: not-allowed; }
#loginError {
  color: #ff3b30;
  font-size: 13px;
  margin-top: 12px;
  display: none;
}
.daemon-img {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 24px;
  opacity: 0;
  animation: fadeIn 1.4s ease forwards;
}
.uh { display: none; }
@keyframes fadeIn {
  to { opacity: 1; }
}
