* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #0d0d1a, #000);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
  margin-bottom: 25px;
  color: #ffffff;
}

.input-group {
  margin-bottom: 15px;
}

.input-group input {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #1a1a2e;
  color: #fff;
  font-size: 1rem;
}

.input-group input::placeholder {
  color: #aaa;
}

button {
  background: linear-gradient(to right, #005eff, #a500ff);
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

button:hover {
  filter: brightness(1.1);
}

.links {
  margin-top: 15px;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.links a {
  color: #bbb;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}
