/* Drie Lead Capture Styles */
.drie-lc-form-wrapper {
    max-width: 500px;
    margin: 20px auto;
    padding: 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    font-family: inherit;
    box-sizing: border-box;
}

.drie-lc-form-wrapper * {
    box-sizing: border-box;
}

.drie-lc-input-group {
    display: flex;
    gap: 8px;
    width: 100%;
}

.drie-lc-email-input {
    flex-grow: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.drie-lc-email-input:focus {
    border-color: #7000ff;
    box-shadow: 0 0 0 3px rgba(112, 0, 255, 0.25);
}

.drie-lc-submit-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #7000ff, #b000ff);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.drie-lc-submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.drie-lc-submit-btn:active {
    transform: translateY(0);
}

.drie-lc-submit-btn:disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

.drie-lc-response-msg {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    animation: drieFadeIn 0.3s ease;
}

.drie-lc-response-msg.success {
    background: rgba(46, 213, 115, 0.15);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.25);
}

.drie-lc-response-msg.error {
    background: rgba(255, 71, 87, 0.15);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.25);
}

@keyframes drieFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .drie-lc-input-group {
        flex-direction: column;
        gap: 12px;
    }
    .drie-lc-submit-btn {
        width: 100%;
    }
}
