.aas-bg-wrapper {
  background-image: url('../assets/advisory/bg.jpg'); /* Adjust path as needed */
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
}

/* Form wrapper */
.aas-bulletin-form {
  background: rgba(255, 255, 255, 0.95);
  max-width: 480px;
  margin: 60px auto;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Heading */
.aas-bulletin-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #2e8b57;
  font-size: 24px;
}

/* Labels */
.aas-bulletin-form label {
  display: block;
  margin-top: 15px;
  font-weight: 500;
}

/* Select boxes */
.aas-bulletin-form select {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

/* Submit Button */
.aas-bulletin-form button {
  width: 100%;
  padding: 12px;
  background-color: #2e8b57;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  margin-top: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.aas-bulletin-form button:hover {
  background-color: #246b45;
}

/* Error message */
.error {
  color: red;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}

