.fullwidth-background {
  position: relative;  
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  min-height:600px;
  color: white; /* Adjust text color for readability */
  display: flex;
  align-items: center; /* Center content vertically */
}
.fullwidth-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*   background: rgba(0, 0, 0, 0.5); /* Overlay color and transparency */ 
  background:#4E3369;
  opacity:.85;
  z-index: 1;
}
.content {
  position: relative;
  z-index: 2;
}

.fullwidth-background form{
  max-width:437px;
  margin:0 auto;
}

.fullwidth-background form input{
  width:100%;
  border:1px solid #3E824E;
  padding:10px;
}

.fullwidth-background form .hs-button{
  
  margin-top: 20px;
  border: none;
  background: #4E3369;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.hs-error-msg {
color:red;
}