/* popup.css */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    justify-content: center;
    align-items: center;
}
.popup-container {
  background-size: cover;
    border-radius: 10px;
    padding: 25px;
    width: 90%;
    max-width: 550px!important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
}

/* Close Button Style */
.btn-close-custom {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: red;
    color: white;
    border: none;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 10%;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.btn-close-custom:hover {
    background-color: darkred;
}

.popup-logo {
    height: 40px;
    width: auto;
}

#formLoader {
  animation: loaderFadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
