@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


*{
  box-sizing: border-box;
}

.modal-containerr{
  background-color: rgba(0, 0, 0, 0.671);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-containerr.show {
  pointer-events: auto;
  opacity: 1;
}


.modalr{
  background-color: white;
  width: 600px;
  max-width: 100%;
  padding: 30px 50px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.modalr h1{
  margin: 0;
}

.modalr p{
  opacity: 0.7;
  font-size: 18px;
}

button{
  background-color: #da5407;
  color: white;
  border: 0;
  border-radius: 5px;
  padding:10px 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 font-size: 14px;
}