.form-block{
  background: black;
  min-height: 100vh;
  flex-direction: column;
  margin-top: 100px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: whitesmoke;
}
.form-block .input-text{
  width: 100%;
}
.user-block{
    flex-direction: column;
    margin-top: 100px;
    border-top: 1px solid white;
    width: 100%;
}
.order-table{
  margin-top: 40px;
}
.order-number{
    text-align: center;
    border-right: solid 1px black;
}
.user-info{
    width: 100%;
    height: auto;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.user-form {
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-content: center;
    width: 50%;
}
.user-form .input-text {
  width: 100%;
}

@media (max-width: 860px){
  .user-block{
    margin-top: 80px;
  }
  .user-form {
    width: 90%;
  }
  .order-info{
    overflow-x: auto;
  }
}
@media (max-width: 600px){

}