body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 1);
  background-repeat: repeat;
  z-index: -1;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.full-width-image {
  width: 100%;
  height: auto;
}

.content {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.unsubscribe-form {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.unsubscribe-form label,
.unsubscribe-form input,
.unsubscribe-form button {
  display: block;
  margin: 0 auto;
}

.unsubscribe-form label {
  color: white; /* Set label color to white */
}

.unsubscribe-form input[type="email"] {
  width: 40%; /* Make the email input full width */
  padding: 10px;
  margin-bottom: 10px;
}

.unsubscribe-form button {
  background-color: #FF5733; /* Orange background color */
  color: white; /* Text color */
  border: none;
  border-radius: 8px; /* Rounded corners */
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Rest of your CSS styles ... */
