body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: none;
  border-radius: 25px;
  text-align: center;
  font-size: 15px;
  outline: none;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #fff;
  color: #4a00e0;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #ececec;
}

p {
  font-size: 14px;
  margin-top: 15px;
}

a {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}
