* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #0d0d0d, #1f005c);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #fff;
}

.form-container {
  background: linear-gradient(145deg, #2a004d, #5c0099);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 25px #a600ff99;
  width: 300px;
  text-align: center;
}

h1 {
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 5px #ff00ff;
}

form input {
  display: block;
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  background: #ffffff10;
  color: #fff;
}

form input::placeholder {
  color: #ccccff;
}

form input:focus {
  outline: 2px solid #ff00ff;
  background: #ffffff20;
}

button {
  width: 100%;
  padding: 12px;
  background: #ff00ff;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: rgb(3, 255, 255);
}

p {
  margin-top: 10px;
  font-size: 14px;
}

a {
  color: #00ffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
