.close {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 30px;
  color: #1a76d1 !important;
  text-decoration: none;
  font-weight: bold;
  opacity: 1;
}

.popup2 {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 9999999;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: identifier 1s;
}
@media screen and (max-width: 768px) {
  .popup2 {
    padding: 20px;

    transform: translate(-50%, -50%);
    width: 90%;
  }
}

.popup2 input,
.popup2 textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 3px;
}
.popup2 input:focus {
  outline: none;
  border: 1px solid #0019336b;
}
.popup2 textarea:focus {
  outline: none;
  border: 1px solid #0019336b;
  box-shadow: none;
}

#popup2:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /* background: rgba(0, 0, 0, 0.5); */
  z-index: -2;
  transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: identifier 1s;
}

@keyframes identifier {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
