
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.gradient-bg {
  background: linear-gradient(-45deg, #1f1c2c, #928DAB, #2c3e50, #3498db);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  text-align: center;
  max-width: 500px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  width: 100%;
}

img.logo {
  height: 40px;
  margin-bottom: 30px;
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

input[type="text"] {
  padding: 15px;
  font-size: 1em;
  width: 100%;
  border: none;
  border-radius: 8px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

button {
  padding: 15px 25px;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  background: #2e9afe;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #1f7fd4;
}

.link-box {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  word-break: break-word;
  margin-top: 20px;
}

.small-text {
  margin-top: 20px;
  font-size: 0.85em;
  color: #aaa;
}
