
/* start pop up css here **** */

/* .popup-trigger {
  padding: 12px 24px;
  background: #764ba2;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}
.popup-trigger:hover {
  background: #5a3a90;
} */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.popup-overlay.active {
  display: flex;
}

.popup-container {
  background: #fff;
  border-radius: 15px;
  width: 90%;
  max-width: 450px;
  /* padding: 30px 20px; */
  position: relative;
  animation: popupIn 0.3s ease;
}

.popup-header{
    padding-top: 20px;

background: linear-gradient(135deg, #FF6B00 0%, #FFB347 100%);
background: linear-gradient(135deg, #ea4c89 0%, #ffb347 100%);

border-top-left-radius:15px;
border-top-right-radius:15px;
padding-bottom: 20px;
}

.popup-form{
      padding: 30px 20px;
}

@keyframes popupIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-header h3 {
  color: #ffff;
  text-align: center;
  font-weight: 700;
  font-family: 'Poppins',sans-serif;
  font-size: 24px;
  line-height: 44px;
}


.popup-header p {
  text-align: center;
  font-family: 'Poppins',sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ffff;
}

.popup-close {
  position: absolute;
            top: 15px;
            right: 20px;
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            font-size: 1.5rem;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
}

.popup-close:hover{
     background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
}

.popup-form .form-group {
  margin-bottom: 15px;
  font-family: 'Poppins',sans-serif;
  
}

.popup-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.popup-submit {
  background: linear-gradient(45deg, #28a745, #20c997);
  border: none;
  color: white;
  padding: 12px;
  width: 100%;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
  transition: 0.3s;
}
.popup-submit:hover {
  opacity: 0.9;
}

.input_pop_ {
  border: 1px solid #ccc;
  padding: 10px;
  transition: box-shadow 0.3s ease; /* smooth animation */
  outline: none;
}

.input_pop_:focus {
  box-shadow: 0 0 8px 2px #ea4c89;
  border-color: #ea4c89;
}

.input_pop_::placeholder{
    font-family: 'Poppins',sans-serif;
}

.error{
    color: red;
      font-weight: 600;
  font-family: 'Poppins',sans-serif;
}

.error_duplicate{
   color:orange;
      font-weight: 600;
  font-family: 'Poppins',sans-serif;
}

.success{
  color: #28a745;
  font-weight: 600;
  font-family: 'Poppins',sans-serif;
}

@media(max-width:900px){
  .popup-header h3{
    font-size: 20px;
  }
}

/* end pop up css here **** */
