
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: Inter, sans-serif;
  background: #0d1117;
  color: white;
}
input, button {
  padding: 12px;
  border-radius: 8px;
  border: none;
}
button {
  background: #0094ff;
  color: white;
  cursor: pointer;
}
button:hover {
  background: #0074cc;
}
.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 22px;
  border-radius: 14px;
  margin-top: 20px;
}
.nav {
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: 70px;
  padding: 0 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.br-logo img {
  height: 42px !important;
  width: auto !important;
}

body.br-theme {
  background: radial-gradient(circle at top, #0a0f1a 0%, #00050a 80%) !important;
  color: white;
}
