.form-success-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.75rem 1rem;
    animation: formSuccessFadeIn 0.35s ease;
}

.form-success-icon-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    color: #059669;
    margin-bottom: 1rem;
}

.form-success-icon {
    width: 2rem;
    height: 2rem;
}

.form-success-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #065f46;
    margin: 0 0 0.35rem;
}

.form-success-message {
    font-size: 0.88rem;
    color: #047857;
    margin: 0;
    max-width: 22rem;
    line-height: 1.5;
}

@keyframes formSuccessFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kl-form-card .form-success-icon-wrap {
    background: rgba(16, 185, 129, 0.12);
}

.kl-form-card .form-success-title {
    color: #0f172a;
}

.kl-form-card .form-success-message {
    color: #475569;
}

.op-form-card .form-success-panel {
    min-height: 280px;
}

.detail-forms-section .form-success-panel {
    min-height: 220px;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}
