.container {
  display: flex;
  flex-direction: column;
  align-items: center;

  .settleInForm {
    width: 60%;
  }
}

@media screen and (max-width: 700px) {
  .container {
    .settleInForm {
      width: 100%;
    }
  }

}