body {
  background: #0f172a;
  color: white;
  font-family: Arial, sans-serif;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;

  margin: 0;
}

/* Containers */
#auth,
#app,
#chat {
  background: #020617;
  padding: 20px;
  border-radius: 12px;
  width: 330px;
  box-shadow: 0 0 20px #38bdf8;
}

/* Inputs & Buttons */
input,
button {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: none;
  border-radius: 6px;
  box-sizing: border-box;
}

input {
  background: #020617;
  color: white;
  border: 1px solid #38bdf8;
}

button {
  background: #38bdf8;
  font-weight: bold;
  cursor: pointer;
}

button.link {
  background: none;
  color: #38bdf8;
}

/* Groups */
.group {
  border: 1px solid #38bdf8;
  padding: 8px;
  border-radius: 6px;
  margin-top: 6px;
  cursor: pointer;
}

/* Chat */
#messages {
  height: 150px;
  overflow-y: auto;
  border: 1px solid #38bdf8;
  margin: 8px 0;
  padding: 6px;
  border-radius: 6px;
}

.msg {
  margin-bottom: 4px;
  font-size: 13px;
}

#members {
  font-size: 12px;
  margin-bottom: 6px;
  opacity: 0.8;
}

/* BOT BUTTON */
#botBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;
  border-radi
