
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #1f1c2c, #928dab);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}
.form-container, .container {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 400px;
  text-align: center;
}
input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
}
input[type="checkbox"] {
  margin-right: 10px;
}
button, .button {
  width: 100%;
  padding: 12px;
  background-color: #6c5ce7;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
}
button:hover, .button:hover {
  background-color: #a29bfe;
}
.small-text {
  font-size: 0.8em;
  margin-top: 10px;
  color: #ccc;
}
