/* Lead Capture Button Block - Public Styles */

.lc-button-wrapper {
    text-align: var(--lc-text-align, center);
    margin: 20px 0;
}

.lc-button {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Button Styles */
.lc-button.style-oval {
    border-radius: 25px;
}
.lc-button.style-rounded {
    border-radius: 12px;
}
.lc-button.style-pill {
    border-radius: 50px;
    padding: 12px 40px;
}

/* Animations */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}
.lc-button.style-blink {
    animation: blink 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.lc-button.style-pulse {
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.lc-button.style-bounce:hover {
    animation: bounce 0.6s;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px var(--lc-bg-color, #0073aa); }
    50% { box-shadow: 0 0 30px var(--lc-bg-color, #0073aa); }
    100% { box-shadow: 0 0 5px var(--lc-bg-color, #0073aa); }
}
.lc-button.style-glow {
    animation: glow 2s infinite;
}

/* Hover Effect */
.lc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .lc-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.lc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lc-modal {
    background: white;
    padding: 24px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    position: relative;
}


.lc-close {
	
    position: absolute;
    top: 12px;
    right: 12px;
    background: red;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

#lc-lead-form input, #lc-lead-form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#lc-lead-form button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
	align-items: center;  
}

#lc-lead-form button:hover {
    background: #005a87;
}
 
