.modal-box {
  display: none;
  position: fixed;
  z-index: 99999999999999999999;
  padding-top: 15vh;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(8, 8, 9, 0.7);
}
.modal-content {
  position: relative;
  background-color: #fcf8ff00;
  margin: auto;
  padding: 0;
  z-index: 999999999999999999999;
  max-width: 600px;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.3s;
  animation-name: animatetop;
  animation-duration: 0.3s;
}
.modal-body {
  background: #ffffff;
  padding: 20px 40px;
  color: #000000;
  justify-items: center;
  border-radius: 0px 0px 20px 20px;
  text-align: center;
}
.modal-header h6 {
  padding: 20px 0px 20px 10px;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.modal-header {
  padding: 20px 12px;
  background: #00165c;
  border-radius: 20px 20px 0px 0px;
  color: #fff;
}
.form-div {
    display: grid;
    gap: 15px;
}
.close {
  color: #ffffff;
  position: absolute;
  right: 8px;
  top: 6px;
  font-size: 2rem;
}

.close:hover,
.close:focus {
  color: #ffb300;
  text-decoration: none;
  cursor: pointer;
}

/* add animation effects */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
