.main_container,
.form_container,
.webform-confirmation,
.double_field_container {
  display: flex;
}

.main_container {
  justify-content: center;
}

.form_container,
.webform-confirmation {
  max-width: 742px;
  width: 85%;
  margin: 0 auto;
  flex-direction: column;
  padding: 32px 24px;
  border-radius: 8px;
  gap: 32px;
}

.webform-confirmation {
  align-items: center;
  padding: 40px;
}

.double_field_container {
  justify-content: space-between;
}

.double_field_container > * {
  width: 45%;
}

p {
  font-style: italic;
  margin-bottom: 0;
  color: #4B5D6F;
}

h3 {
  font-family: 'Ubuntu Bold';
  color: #0862AD;
  margin-bottom: 0;
}

.coh-style-webform fieldset.form-item.checkboxes--wrapper legend span {
  font-weight: 500;
}

.coh-style-webform .form-item {
  padding-bottom: 0;
}

input#edit-registration-of-entity-interested-in-sanepar-account {
  width: 100%;
}

@media (max-width: 1024px) {

.double_field_container {
  flex-direction: column;
  gap: 32px;
}

.double_field_container > * {
  width: 100%;
}

}