/* Import a modern font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap");

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0f172a; /* Dark sleek blue */
  font-family: "Poppins", sans-serif;
  color: white;
}

div {
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent white */
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2); /* Cyan glow */
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(10px); /* The new concept! */
  width: 350px;
}

h1 {
  font-size: 24px;
  margin-bottom: 30px;
  letter-spacing: 2px;
  color: #22d3ee; /* Cyan text */
}

label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #94a3b8;
}

input {
  width: 80%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  text-align: center;
  outline: none;
}

input:focus {
  border: 1px solid #22d3ee;
}
input:hover {
  border-color: aqua;
}
button {
  background-color: #22d3ee;
  color: #0f172a;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

button:hover {
  background-color: #06b6d4;
  transform: scale(1.05);
}

p {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 600;
  height: 20px; /* Keeps the layout from jumping when text appears */
}
