﻿.hero-form-wrap {
    position: relative;
}

.custom-notifi {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    min-width: 240px;
    height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient( 135deg, #6d30fb 0%, #8b5cf6 50%, #5b21b6 100% );
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(109, 48, 251, 0.35), 0 0 15px rgba(109, 48, 251, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

    .custom-notifi img {
        width: 18px;
        height: 18px;
        filter: brightness(0) invert(1);
    }

    .custom-notifi.shown {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }





@keyframes notifyFade {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    15% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    85% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-15px);
    }
}

.custom-notifi.auto {
    animation: notifyFade 2s ease forwards;
}

.custom-notifi:hover {
    box-shadow: 0 12px 30px rgba(109, 48, 251, 0.55), 0 0 25px rgba(109, 48, 251, 0.75);
}


.custom-notifi-all {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    min-width: 240px;
    height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient( 135deg, #6d30fb 0%, #8b5cf6 50%, #5b21b6 100% );
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(109, 48, 251, 0.35), 0 0 15px rgba(109, 48, 251, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

    .custom-notifi-all img {
        width: 18px;
        height: 18px;
        filter: brightness(0) invert(1);
    }

    .custom-notifi-all.shown {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .custom-notifi-all.auto {
        animation: notifyFade 2s ease forwards;
    }

    .custom-notifi-all:hover {
        box-shadow: 0 12px 30px rgba(109, 48, 251, 0.55), 0 0 25px rgba(109, 48, 251, 0.75);
    }
