#body {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  flex-direction: column;
  padding: 0px 25px;
}

.mAuto {
  margin: auto;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 10px;
}

.button:hover {
  background-color: #218838;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 95%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.form-controls {
  display: flex;
  width: 100%;
}

.form-controls div {
  width: 100%;
  margin: 10px 10px;
}

.form {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ffff;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-div {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.bungkus {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 1000px) {
  .form-div {
    width: 100%;
    margin: 10px 0px;
  }
}

@media only screen and (max-width: 600px) {
  .form-controls {
    flex-wrap: wrap;
  }

  #body {
    padding: 0px;
  }

  h1.mAuto {
    display: none;
  }

  .button {
    margin: auto;
  }
}
