#section-form {
  width: 60%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 95px auto auto auto;
}

.form {
  width: 100%;
  margin-top: 100px;
}

.form-button-group button {
  border: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-color);
}

.form-group label {
  font-weight: 700;
  font-size: 20px;
}

.form-checkbox-group {
  display: flex;
  gap: 9px;
}

.form-checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

@media screen and (max-width: 895px) {
  .form-checkbox-group input[type="checkbox"] {
    width: 32px;
    height: 32px;
  }
}

@media screen and (max-width: 568px) {
  .page-title {
    font-size: 28px;
  }
  #section-form {
    width: 80%;
  }
}
