/* Basic modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: white;
  margin: 10% auto;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
}

.close-btn {
  float: right;
  cursor: pointer;
  font-weight: bold;
}

#popup-modal .fail {

}
