form div {
  padding: 5px;
  margin-top: 10px;
  width: 100%;
}

.form-wrapper {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction :column;
  text-align: center;
}

.form-container {
  width: 40%;
  border-radius: 20px;
  padding: 10px;
}

form {
  padding: 10px;
  display: flex;
  line-height: 1;
}

label {
  display: block;
  text-align: left;
  padding: 2px;
}

input , select {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: solid 1px;
  border-color: #606060;
}

input[type="submit"] {
  margin-top: 35px;
  width:  99%;
  background-color:  #999999;
}

input[type="submit"]:active {
  background-color:  #aaa;
}