/* Newsletter public page styles */

/* Semi-transparent portlet with shine-through effect */
.external_card .kt-portlet {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.external_card .kt-portlet__body {
    background: transparent;
}

/* Success icon animation */
.success-icon {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
