#content {
 margin: 0 !important;
 padding: 0 !important;
}

.flex {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.text-danger-warning {
  font-size: large;
  font-weight: bold;
  background-color: yellow;
  -webkit-text-stroke-width: 0.px;
  -webkit-text-stroke-color: white;
}

.text-checkbox {
    color: white;
}

.img-content {
  flex: 3;
}

.form-content {
  flex: 2;
  margin-left: 3rem;
}

.label{
  width: 8vw;
}

.input{
  width: 17vw;
}

.form-content .btn {
  width: 100px !important;
  display: block;
  margin: 20px auto;
  min-width: 150px;
}

@media screen and (max-width: 700px) { 
  #content {
    flex-direction: column;
  }
  .form-content {
    margin-left: 0;
  }
  .flex .label {
    width: 20vw;
  }
  .flex .input {
    width: 30vw;
  }
  .description {
    text-align: center;
  }
}