.ccf-wrapper-1de8c10c {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.ccf-container-1de8c10c {
    width: 100%;
    max-width: 640px;
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 50px -12px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.08);
    position: relative;
    overflow: hidden;
}

.ccf-container-1de8c10c::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #f43f5e, #f97316, #eab308, #22c55e, #06b6d4, #6366f1);
    background-size: 200% 100%;
    animation: ccf-gradient-slide-1de8c10c 4s linear infinite;
}

@keyframes ccf-gradient-slide-1de8c10c {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.ccf-header-1de8c10c {
    text-align: center;
    margin-bottom: 36px;
}

.ccf-icon-1de8c10c {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.ccf-title-1de8c10c {
    font-size: 28px;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.ccf-subtitle-1de8c10c {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.ccf-row-1de8c10c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ccf-field-1de8c10c {
    margin-bottom: 20px;
}

.ccf-label-1de8c10c {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.ccf-input-wrap-1de8c10c {
    position: relative;
}

.ccf-input-icon-1de8c10c {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: color 0.3s ease;
}

.ccf-input-1de8c10c {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: #1f2937;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.ccf-input-1de8c10c:focus {
    border-color: #8b5cf6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.ccf-input-1de8c10c:focus + .ccf-input-icon-1de8c10c,
.ccf-input-wrap-1de8c10c:focus-within .ccf-input-icon-1de8c10c {
    color: #8b5cf6;
}

.ccf-textarea-1de8c10c {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: #1f2937;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    box-sizing: border-box;
}

.ccf-textarea-1de8c10c:focus {
    border-color: #8b5cf6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.ccf-submit-1de8c10c {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    background-size: 200% 200%;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.ccf-submit-1de8c10c:hover {
    background-position: 100% 100%;
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.45);
    transform: translateY(-2px);
}

.ccf-submit-1de8c10c:active {
    transform: translateY(0);
}

.ccf-submit-1de8c10c:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.ccf-btn-arrow-1de8c10c {
    transition: transform 0.3s ease;
}

.ccf-submit-1de8c10c:hover .ccf-btn-arrow-1de8c10c {
    transform: translate(3px, -3px);
}

/* Success State */
.ccf-success-1de8c10c {
    text-align: center;
    padding: 20px 0;
    animation: ccf-fade-in-1de8c10c 0.5s ease;
}

@keyframes ccf-fade-in-1de8c10c {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ccf-success-icon-1de8c10c {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.ccf-success-title-1de8c10c {
    font-size: 24px;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 8px 0;
}

.ccf-success-text-1de8c10c {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.ccf-reset-btn-1de8c10c {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #6366f1;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ccf-reset-btn-1de8c10c:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

/* Error styling */
.ccf-field-error-1de8c10c .ccf-input-1de8c10c,
.ccf-field-error-1de8c10c .ccf-textarea-1de8c10c {
    border-color: #f43f5e;
    background: #fff5f7;
}

.ccf-error-msg-1de8c10c {
    font-size: 12px;
    color: #f43f5e;
    margin-top: 4px;
    display: block;
    animation: ccf-fade-in-1de8c10c 0.3s ease;
}

.ccf-form-error-1de8c10c {
    background: linear-gradient(135deg, #fef2f2, #fff1f2);
    border: 1px solid #fecdd3;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #e11d48;
    text-align: center;
    animation: ccf-fade-in-1de8c10c 0.3s ease;
}

/* Responsive */
@media (max-width: 600px) {
    .ccf-container-1de8c10c {
        padding: 32px 24px;
    }
    .ccf-row-1de8c10c {
        grid-template-columns: 1fr;
    }
    .ccf-title-1de8c10c {
        font-size: 24px;
    }
}
