/* Custom form styles */
form {
  background-color: #000; /* Dark background */
  color: #fff; /* White text */
  font-family: Arial, sans-serif;
  padding: 20px;
  border-radius: 10px;
}

form h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

form .form-control {
  margin-bottom: 15px;
}

form .form-control label {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

form .form-control input,
form .form-control select {
  width: 100%;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 5px;
  background: #222;
  color: #fff;
}

form .form-control input:focus,
form .form-control select:focus {
  outline: none;
  border-color: #555;
}

form .form-control small {
  display: none;
  color: red;
  margin-top: 5px;
}

form .form-control.error input,
form .form-control.error select {
  border-color: red;
}

form .form-control.error small {
  display: block; /* Show error message */
}

form button {
  width: 100%;
  padding: 10px;
  background: #333 !important;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #444;
}

section.s-block:first-of-type.s-block--fixed-banner {
    margin-top: 0px !important;
    margin-bottom:2rem
}
section.s-block:first-of-type.s-block--fixed-banner .container {
    max-width: 100%;
    padding:0px;
}