/* ===== CONTACT =====*/
.contact__input{
  width: 100%;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi);
  padding: 1rem;
  border-image-source: linear-gradient(90deg, #fff400, #ffa601, #ff9f05 ,#f3503c, #ee4248, #d53567);
  border: 3rem solid linear-gradient(90deg, #fff400, #ffa601, #ff9f05 ,#f3503c, #ee4248, #d53567);
  /* outline: none; */
  border-width: 3pt;
  box-shadow: -4px 4px 25px rgba(225, 225, 255, 0.3);
  border-image-slice: 1;
  margin-bottom: var(--mb-4);
}
.contact__button{
  display: block;
  font-size: var(--normal-font-size);
  cursor: pointer;
  margin-left: auto;
}

/* Modal Popup Styles */
.popupContent {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: black;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.pulsatingCircle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #4caf50;
  border-radius: 50%;
  position: relative;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.checkMark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 10px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: translate(-50%, -50%) rotate(-45deg);
}

  #successPopup {
    display: none;
  }

.ctaBtn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4caf50;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: #4caf50 0.3s;
}

.ctaBtn:hover {
  background: #45a049;
}

@media screen and (min-width: 768px){
  .contact__form{
    width: 360px;
  }
  .contact__container{
    justify-items: center;
  }
}