body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.login-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 360px;

  hr {
    border: none;
    stroke: none;
    height: 2rem; width: 100%;
  }
}
.brand { margin-bottom: 0.25rem; justify-content: center; }
.brand-logo { width: 28px; height: 28px; margin-left: -22px !important;}
h1 {
  font-size: 1.4rem; 
}
.subtitle {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}
input[type="password"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #334155;
  background: #0f172a;
  color: #f8fafc;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
input[type="password"]:focus { border-color: #3b82f6; }
.error-msg {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
button {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.65rem;
  border-radius: 6px;
  border: none;
  background: #3b82f6;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover { background: #2563eb; }
