.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 1000; /* Make sure it is above other elements */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: visibility 0s, opacity 0.3s ease;
}

/* Show Modal */
.modal.show {
  visibility: visible;
  opacity: 1;
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
}


/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 

a {
  text-decoration: none;
}
label {
  font-weight: 1000;
  font-size: 15px;
  color: black;
}

.form-control {
  background-color: #f0f0f0;
  border-left: 1px solid #a8a8a8;
}

.required{
  color: red;
}