.registration {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 60px;
}
.registration-title {
  text-align: center;
  margin-bottom: 30px;
}
.registration-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}
.registration-form-content {
  width: 100%;
  display: flex;
  column-gap: 3%;
  row-gap: 50px;
  justify-content: center;
  margin-bottom: 15px;
}

.informed-border {
  border: 8px solid var(--xlGrey);
  padding: 34px 20px 34px 40px;
}

/* OPTIONS */
.registration-options {
  width: 50%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
}
/* MAIN CHANEL */
fieldset.registration-main-chanel {
  margin-left: 48px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.registration-main-chanel-title {
  margin-bottom: 20px;
  font-weight: bold;
}

/* Registration fields */
.registration-fields {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: center;
  width: 50%;
  min-width: 280px;
}

@media screen and (max-width: 840px) {
  .informed-border {
    padding: 20px;
    border-width: 4px;
  }
  fieldset.registration-main-chanel {
    margin-left: 24px;
  }
}
@media screen and (max-width: 600px) {
  .registration-form-content {
    flex-direction: column;
  }
  .registration-fields,
  .registration-options {
    width: 100%;
  }
}
