:root {
  color-scheme: dark;
  --bg: #06070b;
  --panel: rgba(10, 16, 27, 0.95);
  --line: #2f3c52;
  --text: #f2f6ff;
  --muted: #9aa7bf;
  --accent: #00d1ff;
  --accent-2: #ff5f79;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Comic Neue", cursive;
  background-color:  	#473058;
  background-image: url(assets/Glitters.gif);
  color: var(--text);
}

button{
  font-family: "Comic Neue", cursive;
  font-weight: 800;
  font-size: 18px;
}

.page {
  min-height: 100vh;
  display:flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.panel {
  width: min(100%, 600px);
  background: #fdc0d1ee;
  border: 3px solid white;
  border-radius: 5px;
  padding: 2rem;
  color:  	 	#51424f;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.led {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
}

h1 {
  margin: 0;
  font-size: 1.5rem;
}

.subtitle {
  margin: 0 0 1.3rem;
  font-weight: bold;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

label {
  font-size: 0.95rem;
}

input {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid white;
  background: 	#ffb8de;
  color: var(--text);
  font-size: 1rem;
}

input:focus {
  outline: 2px solid #f482c1aa;
  border-color: #f482c1;
}

button {
  margin-top: 0.4rem;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 10px;
  background: radial-gradient(#f482c1,#ff5cb3);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  filter: brightness(1.08);
}

.link {
  display: inline-block;
  color: #fb4f93;
  text-decoration: none;
}

.hint {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.status {
  min-height: 1.3rem;
  margin-top: 1rem;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 560px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.title-img{
  max-width: 50vw;
}

.question{
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

.list{
  display: flex;
  flex-direction: column;
  gap: 6px;
}