.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 60%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
  height: 35vh;
}
.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  cursor: pointer;
}
.form_input {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  gap: 10px;
}
.div_input {
  width: 45%;
}
.div_input input {
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: 10px;
}
.div_input select {
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: 10px;
}
.submit_add {
  float: right;
  background-color: #29bf12;
}
.btn_yes {
  background-color: red;
}
.btn_no {
  background-color: #eddea4;
}
