/* Full-width inputs */
input[type=text], input[type=email], input[type=tel], input[type=url], textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Set a style for all buttons */
#poppup-btn {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

/* Add a hover effect for buttons */
#poppup-btn:hover {
  opacity: 0.8;
}

.poppup-container{
  padding: 16px;
}

/* Hide modal by default */
.modal {
  z-index: 99999;
  background-color: rgba(0,0,0,0.4);
  align-items: center;
  justify-content: center;
}

/* Modal Content/Box */
.modal-content {
  width: 350px;
  animation: animatezoom 0.3s ease;
}

/* The Close Button */
.close {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #000;
  font-size: 30px;
  z-index: 1;
}

/* Close button on hover */
.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}