/* Main styles for the form */
body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.content {
  flex: 1;
  margin-right: 20px;
}

.form-container {
  flex: 1;
  max-width: 400px;
}

h1, h3 {
  margin: 0;
}

blockquote {
  font-style: italic;
  color: #777;
}

form {
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  border-radius: 8px;
}

input[type="text"], input[type="email"], input[type="checkbox"], button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

button {
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

/* Flexbox for buttons */
.options {
  display: flex;
  justify-content: space-between;
}

.options button {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  border-radius: 4px;
}

button.love {
  background-color: #e74c3c;
}

button.luck {
  background-color: #f1c40f;
}

button.money {
  background-color: #2ecc71;
}

button.love:hover {
  background-color: #c0392b;
}

button.luck:hover {
  background-color: #f39c12;
}

button.money:hover {
  background-color: #27ae60;
}

/* Footer styles */
footer {
  background: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer li {
  display: inline;
  margin: 0 10px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
