* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

body {
  background: #050505;
  color: #fff;
  height: 100vh;
}

.noise {
  position: fixed;
  inset: 0;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: .05;
  pointer-events: none;
}

.center {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  font-size: 64px;
  letter-spacing: 6px;
}

.subtitle {
  opacity: .6;
  margin: 12px 0 30px;
}

.btn {
  text-decoration: none;
  background: white;
  color: black;
  padding: 12px 28px;
  font-weight: 600;
}

footer {
  position: fixed;
  bottom: 20px;
  width: 100%;
  text-align: center;
  opacity: .4;
}

.dash {
  max-width: 900px;
  margin: auto;
  padding: 30px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.status {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
}

.status.off {
  background: #400;
}

.status.on {
  background: #0a3;
}

section {
  margin-top: 20px;
}

input {
  width: 100%;
  padding: 12px;
  background: #0d0d0d;
  border: 1px solid #222;
  color: white;
}

button {
  margin-top: 10px;
  background: white;
  color: black;
  border: none;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.console {
  margin-top: 25px;
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}
