.modalDialog {
  position: fixed;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    to right,
    rgba(51, 153, 204, 0.5),
    rgba(247, 54, 112, 0.5)
  );
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}
.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
}

.modalDialog > div {
  width: 400px;
  position: relative;
  margin: 10% auto;
  padding: 13px 20px 13px 20px;
  border-radius: 10px;
  background: #fff;
  background: #a6a6a6;
  background: #a6a6a6;
  background: #a6a6a6;
}
.close {
  background: white;
  color: rgba(247, 54, 112, 0.5);
  line-height: 20px;
  position: absolute;
  right: -10px;
  text-align: center;
  top: -10px;
  width: 20px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
}

.close:hover {
  background: rgba(51, 153, 204, 1);
}

.modalDialog h2 {
  margin-top: 5;
  color: white;
  margin-bottom: 15px;
}

.modalDialog p {
  margin-bottom: 15px;
  font-weight: 500;
}
.modalDialog form ins {
  text-decoration: none;
  font-weight: 500;
  color: red;
  text-align: left;
  font-size: 9px;
  position: relative;
  top: -10px;
  left: initial;
}
.modalDialog h4 {
  margin-bottom: 15px;
  font-weight: 700;
}

.modal-input {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  -webkit-writing-mode: horizontal-tb !important;
  writing-mode: horizontal-tb !important;
  text-rendering: auto;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: solid 2px #ccc;
  box-sizing: border-box;
  outline: none;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  appearance: textfield;
  background-color: -internal-light-dark(rgb(255, 255, 255), rgb(59, 59, 59));
  -webkit-rtl-ordering: logical;
  cursor: text;
}
.obs {
  font-size: 12px;
  font-weight: 600;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  text-align: center;
}
.obs i {
  margin-right: 2px;
}
.modalDialog #button {
  display: flex;
  justify-content: center;
}
