body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #74ebd5, #9face6);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  width: 360px;
}

.container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.container input, .container button {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.container button {
  background: #4CAF50;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.container button:hover {
  background: #45a049;
}

p {
  font-size: 14px;
}