 .cef-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.cef-card {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.cef-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cef-header {
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.cef-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.cef-header h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
}

.cef-header p {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

.cef-form {
    position: relative;
    z-index: 2;
}

.cef-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cef-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.cef-field label {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.cef-field input,
.cef-field select,
.cef-field textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 15px;
    color: #0f172a;
    outline: none;
    transition: all 0.25s ease;
}

.cef-field input:focus,
.cef-field select:focus,
.cef-field textarea:focus {
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.cef-upload-wrap {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    padding: 18px;
}

.cef-upload-wrap small {
    color: #64748b;
    margin-top: 8px;
    display: block;
    font-size: 13px;
}

.cef-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 15px 28px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #111827 0%, #4f46e5 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.25);
}

.cef-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(79, 70, 229, 0.3);
}

.cef-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#cef-response {
    margin-top: 18px;
}

.cef-success,
.cef-error {
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 14px;
}

.cef-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.cef-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

@media (max-width: 768px) {
    .cef-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .cef-header h2 {
        font-size: 28px;
    }

    .cef-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cef-submit-btn {
        width: 100%;
    }
}
