.modal{
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content{
  background-color: #fff0f5;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  font-family: "Pacifico", cursive;
  position: relative;
}

.close{
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #ff0073;
}

#lockerPassword{
  padding: 10px;
  width: 80%;
  margin: 10px 0;
  border-radius: 8px;
  border: 2px solid #ffb6c1;
}

#unlockBtn{
  padding: 10px 20px;
  border: none;
  background-color: #ff0073;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Pacifico", cursive;
}
