.unsubscribe-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
  padding: 20px;
}

.unsubscribe-container {
  background: #ffffff;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.unsubscribe-container h1 {
  margin-bottom: 10px;
  font-size: 24px;
}

.unsubscribe-container p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.unsubscribe-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.unsubscribe-form input {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.unsubscribe-form input:focus {
  outline: none;
  border-color: #007bff;
}

.unsubscribe-form button {
  padding: 12px;
  border-radius: 5px;
  border: none;
  background-color: #0087cc;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.unsubscribe-form button:hover {
  background-color: #0087cc;
}

.alert {
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 14px;
}

.alert.success {
  background-color: #e6f9f0;
  color: #28a745;
}

.alert.error {
  background-color: #fdecea;
  color: #dc3545;
}

.footer-text {
  margin-top: 20px;
  font-size: 12px;
  color: #999;
}