* {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  overflow: hidden;
}

.space-background {
  background: radial-gradient(circle at center, #0b0b2e, #000);
  background-image: url('https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExY2JyNXJwN2ZhdGh6aW5qN2w1YmUzb3Y0NzJsdnBzcnI1d2ViMjM5eiZlcD12MV9naWZzX3NlYXJjaCZjdD1n/l0Iy8x1pa0OvrBa6Y/giphy.gif'); 
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.spaceship {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100px;
  transform: translateX(-50%);
}

.login-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 10px #00ffea;
  text-align: center;
}

h1 {
  color: #00ffee;
  margin-bottom: 15px;
}

input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
  background: #222;
  color: white;
  outline: none;
}

button {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: #00ffee;
  color: #000;
  cursor: pointer;
  transition: transform 0.3s;
}

button:hover {
  background-color: #00ccbb;
}

.alien-container {
  position: relative;
  margin-bottom: 10px;
}

.alien {
  width: 80px;
  animation: dance 1s infinite alternate;
  cursor: pointer;
}

#alien-text {
  color: #fff;
  font-size: 14px;
  margin-top: 5px;
}

@keyframes dance {
  from {
    transform: rotate(-5deg) scale(1.05);
  }
  to {
    transform: rotate(5deg) scale(1);
  }
}