/* ================================
   AB Performance - Keynote LP Form Error State
   For /andrew-bennett-keynote-speaker — light form on dark section
   Brand Colours: Red #e1303a, Black #1a1a1a, Gold #E9A329
   ================================ */

.ab-performance-lp-form-wrapper {
    display: flex;
    flex-direction: column;
}

.ab-performance-lp-form-error {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    border: 1px solid rgba(225, 48, 58, 0.25);
    border-left: 4px solid #e1303a;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(225, 48, 58, 0.05);
    animation: abLpFormErrorFade 0.4s ease-out;
}

@keyframes abLpFormErrorFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ab-performance-lp-form-error-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #E9A329 0%, #e1303a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(225, 48, 58, 0.35);
}

.ab-performance-lp-form-error-icon i {
    color: #ffffff;
    font-size: 20px;
}

.ab-performance-lp-form-error-content {
    flex: 1;
}

.ab-performance-lp-form-error-content h3 {
    font-family: 'Gantari', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.ab-performance-lp-form-error-content p {
    font-family: 'Gantari', sans-serif;
    font-size: 14px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}

.ab-performance-lp-form-error-content a {
    color: #e1303a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.ab-performance-lp-form-error-content a:hover {
    color: #c72730;
    border-bottom-color: #c72730;
}

/* Mobile */
@media (max-width: 767px) {
    .ab-performance-lp-form-error {
        padding: 16px 18px;
        gap: 12px;
        margin-bottom: 18px;
        border-radius: 12px;
    }

    .ab-performance-lp-form-error-icon {
        width: 36px;
        height: 36px;
    }

    .ab-performance-lp-form-error-icon i {
        font-size: 17px;
    }

    .ab-performance-lp-form-error-content h3 {
        font-size: 15px;
    }

    .ab-performance-lp-form-error-content p {
        font-size: 13px;
    }
}
