@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /* A dark gradient background */
  background: linear-gradient(135deg, #000000, #1e293b);
  font-family: "Orbitron", sans-serif; /* Modern Digital Font */
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 80px;
  border-radius: 20px;

  /* Glassmorphism Magic */
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(255, 0, 183, 0.4);
}

label {
  font-size: 24px;
  color: #94a3b8;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  font-size: 80px;
  color: rgb(255, 0, 183);
  text-shadow: 0 0 20px rgba(255, 0, 183, 0.6); /* Text Glow */
  letter-spacing: 4px;
}
h2 {
  position: absolute;
  top: 30px;
  left: 40px;
  color: #d90b86;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 2px;
  font-size: 35px;
}
