.form-register__input {
  margin-bottom: 20px;
  position: relative;
  max-width: 376px;
}

.form-register__input-flex {
  flex-basis: 100%;
}

.form-register__submit {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.form-register__messages {
  padding: 20px 0;
  margin-top: 2px;
  color: var(--colorRed);
}

.form-register__legal {
  font-size: 0.875em;
  margin-bottom: 20px;
}

.form-register__section {
  font-size: 1em;
  font-weight: var(--fontWeightBold);
  border-bottom: 1px solid var(--colorGreyDark);
  margin-bottom: var(--spacingSmaller);
  padding-bottom: var(--spacingSmaller);
}

.form-register__input-street,
.form-register__input-city {
  display: flex;
  justify-content: space-between;
  max-width: 376px;
  flex-direction: column;
}

.form-register__helper {
  display: flex;
  max-width: 376px;
  position: relative;
}

.form-register__emailhelper-icon,
.form-register__phonehelper-icon {
  margin: 10px 18px;
  height: 20px;
  width: 20px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  position: absolute !important;
  right: 0;
}

@media (min-width: 480px) {
  .form-register__input-street > div:first-of-type {
    flex-basis: 70%;
    margin-right: 20px;
  }
  .form-register__input-city > div:nth-of-type(2) {
    flex-basis: 70%;
    margin-left: 20px;
  }

  .form-register__input-street,
  .form-register__input-city {
    flex-direction: row;
  }

  .form-register__helper {
    display: flex;
    max-width: unset;
  }

  .form-register__emailhelper-icon,
  .form-register__phonehelper-icon {
    position: relative !important;
  }
}
