.Survey {
  width: 100%;
  margin: 0;
  font-family: sans-serif;

}


.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 5px;

}

.form-group {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  
}

.Survey label {
  font-size: 14px;
  font-weight: 600;
  color: #4b4b4b;
  text-align: left;

}

.Survey input,
.Survey textarea {
  width: 100%;
  padding: 12px;
  border: 1.2px solid #4b4b4b;
  border-radius: 5px;
  font-size: 15px;
}

.Survey input:focus,
.Survey textarea:focus {
  border-color: #000000;
}

.form-checkbox {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 5px;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
}

.form-checkbox label {
  font-size: 14px;
  font-weight: 400;
}

.button {
  background: #a8a8a8;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  align-self: flex-start;
}

.button:hover {
  background: #8f8f8f;
}


@media screen and (max-width: 600px) {
  .Survey {
    padding: 15px;
  }

  #content .Survey .form-group {
    flex: 1 1 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #content .Survey label {
    text-align: left;
    width: 100%;
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
  }

  #content .Survey .form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  #content .Survey .form-checkbox label {
    font-size: 14px;
    line-height: 1.3;
  }
}





.page-content.page-cms {
padding: 0px !important;}