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

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255,255,255,0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255,255,255,0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255,255,255,0.5);
    }
}

#custom-banner button:hover {
    transform: scale(1.1);
}


/* -------- Form Stilleri -------- */
#phone-container {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    background-color: #fff;
}

#phone-container .country-code {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
}

#phone {
    flex: 1;
    border: none;
    padding: 5px;
    font-size: 14px;
    outline: none;
}



