.form-container {
  background: white;
  padding: 0px;
  border-radius: 10px;
  width: 100%;
  /* max-width: 400px; */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.header {
  background-color: black;
  color: white;
  padding: 15px;
  border-radius: 10px 10px 0 0;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.subtext {
  font-weight: bold;
  font-size: 13px;
  color: #333;
  margin-bottom: 15px;
}

.form-group {
  text-align: left;
  margin-bottom: 12px;
}

.form-group label {
  font-size: 13px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  text-align: left;
  margin-top: 10px;
}

.checkbox-group input {
  margin-right: 8px;
  margin-top: 3px;
}

.submit-btn {
  background-color: #f37021;
  color: white;
  border: none;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  margin-top: 15px;
  font-weight: bold;
}

.submit-btn:hover {
  background-color: #d85b1d;
}

.footer-text {
  font-size: 11px;
  margin-top: 15px;
}

.footer-text a {
  color: #0073e6;
  text-decoration: none;
}

#error-msg {
  color: red;
  font-size: 12px;
  margin-top: 10px;
}

#consent-text{
  font-size: 10px;
}