.modalDialog {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  display: none;
  pointer-events: none;
}

.modalDialog:target {
  display: block;
  pointer-events: auto;
}

.modalDialog > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  position: relative;
  margin: 90px auto;
  padding: 5px 20px 13px 20px;
  border-radius: 10px;
  background: #151515;
  background: -moz-linear-gradient(#242424, #000);
  background: -webkit-linear-gradient(#242424, #000);
  background: -o-linear-gradient(#242424, #000);
}

#documentModal > div, #pdfModal > div {
  width: 900px;
}
.modal-title {
  font-size: 24px;
  margin: 24px 0 0;
}
.login-reg {
  font-size: 17px;
  margin: 10px 0 0;
}
.login-btn {
  width: 180px;
}
.modal-req {
  text-align: center;
}
select {
  outline: none;
  text-align: center;
}
option:hover {
  color: orange;
}
.login-reg:hover {
  background: linear-gradient(30deg, #fe7f48 0%, #ff9946 25%, #ffb348 50%, #ffcd52 75%, #fde662 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;  
}

.form-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
}
 .login-form {
  width: 100%;
  height: 40px;
  margin: 10px;
  border: none;
  text-align: center;
  font-size: 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.close {
  background: #eea41a;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  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: orange; 
  }
  input[type=number]::-webkit-inner-spin-button, 
  input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 