body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #f0f4ff, #dceeff);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
}
form {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 350px;
}
h2 {
  text-align: center;
  color: #2b4eff;
  margin-bottom: 20px;
}
/* 🧾 Label + Input styling */
label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}
input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}
input[type="text"]:focus {
  border-color: #2b4eff;
  outline: none;
}
/* ✨ Buttons */
input[type="submit"],
input[type="reset"] {
  background-color: #2b4eff;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}
input[type="reset"] {
  background-color: #777;
  margin-left: 10px;
}
input[type="submit"]:hover {
  background-color: #1f38cc;
  transform: translateY(-2px);
}
input[type="reset"]:hover {
  background-color: #555;
  transform: translateY(-2px);
}