    :root {
        --bs-primary: #3b82f6;
        --bs-success: #10b981;
        --bs-danger: #ef4444;
        --bs-warning: #f59e0b;
    }

    .jconfirm.jconfirm-modern .jconfirm-box{
        background: #F9FFF8 !important;
        border-radius: 20px;
    }


    .main-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .form-card {
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 3px 10px rgba(0, 0, 0, 0.02);
        background: white;
        overflow: hidden;
    }

    .form-header {
        font-weight: 600;
        padding-bottom: 15px;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 25px;
    }


    .form-control:focus,
    .form-select:focus {
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .form-control.error {
        border-color: var(--bs-danger);
    }

    .form-control.success {
        border-color: var(--bs-success);
    }

    .error-message {
        color: var(--bs-danger);
        font-size: 0.875rem;
        margin-top: 5px;
        display: flex;
        align-items: center;
        gap: 5px;
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .error-message.show {
        opacity: 1;
        height: 24px;
    }

    .captcha-section {
        background: rgba(255,255,255, 0.1);
        border-radius: 12px;
        padding: 25px;
        margin: 20px 0 30px;
    }

    .captcha-header {
        font-weight: 600;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }


    .question-section {
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 20px;
        background: rgba(255,255,255, 0.05);
    }

    .question-text {
        font-size: 15px;
        line-height: 1.5;
        margin: 0;
    }

    .icons-grid {
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
    }



    .icon-card {
        background: rgba(255,255,255, 0.05);
        padding: 12px;
        text-align: center;
        cursor: grab;
        transition: all 0.2s ease;
        user-select: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: calc(50% - 5px);
        flex: 0 0 calc(50% - 5px);
        height: 80px;
        border-radius: 3px;
        font-size: clamp(12px, 1.2rem, 1.2vw);
        line-height: 12px;
        text-align: center;
    }

    .icon-card:hover {
        transform: translateY(-2px);
        border-color: #cbd5e1;
        background: rgba(255,255,255, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .icon-card:active {
        cursor: grabbing;
        transform: translateY(0);
    }

    .icon-card.dragging {
        opacity: 0.6;
        transform: scale(0.95);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .icon-card .icon {
        font-size: 24px;
        margin-bottom: 8px;
        height:auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-card .icon-name {
        font-size: 12px;
        font-weight: 500;
    }

    .drop-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .drop-circle {
        width: 100%;
        height: 160px;
        border-radius: 3px;
        border: 2px dashed rgba(255,255,255,0.2);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        margin-bottom: 15px;
        position: relative;
        overflow: hidden;
    }


    .drop-circle.active {
        border-color: var(--bs-primary);
        border-style: solid;
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.12);
    }

    .drop-circle.correct {
        border-color: var(--bs-success);
    }

    .drop-circle .drop-text {
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        padding: 0 15px;
        z-index: 1;
        line-height: 1.4;
        font-style: italic;
    }

    .status-area {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
    }

    .status-text {
        font-size: 14px;
        font-weight: 500;
        text-align: center;
    }

    .status-text.verified {
        color: var(--bs-success);
        font-weight: 600;
    }

    .checkmark {
        display: inline-block;
        width: 20px;
        height: 20px;
        background: var(--bs-success);
        color: white;
        border-radius: 50%;
        text-align: center;
        line-height: 20px;
        margin-right: 8px;
        font-size: 12px;
        transform: scale(0);
        transition: transform 0.3s ease;
    }

    .verified .checkmark {
        transform: scale(1);
    }

    .captcha-required {
        color: var(--bs-danger);
        font-size: 0.9rem;
        text-align: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .captcha-required.show {
        opacity: 1;
    }

    .captcha-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .form-footer {
        display: flex;
        align-items: start;
        justify-content: start;
    }

    .btn-primary {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
        padding: 12px 28px;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.2s ease;
        box-shadow: 0 3px 10px rgba(59, 130, 246, 0.2);
    }

    .btn-primary:hover {
        background-color: #2563eb;
        border-color: #2563eb;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.25);
    }

    .btn-primary:disabled {
        background-color: #94a3b8;
        border-color: #94a3b8;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .btn-outline-primary {
        border-radius: 8px;
        padding: 10px 20px;
        font-weight: 500;
    }

    .loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.85);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        width: 100%;
        height: 100%;
    }

    .loading-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .spinner-border {
        width: 3rem;
        height: 3rem;
        color: var(--bs-primary);
        margin-bottom: 15px;
    }

    .loading-text {
        color: #334155;
        font-weight: 500;
    }

    .form-info {
        font-size: 0.875rem;
        color: #64748b;
    }

    .mb-4 {
        margin-bottom: 1.5rem !important;
    }

    @media(max-width:768px) {
        .captcha-section {
            padding: 15px 15px;
        }

        .question-section {
            border-radius: 5px;
            padding: 10px;
            margin-bottom: 12px;
        }

        .icon-card {
            width:90px;
            height:90px;
            padding: 2px;
        }
    }

    @media (max-width:767px) {
        body{
            padding:0px;
        }
        .form-card{
            box-shadow: none;
            border:0px;
        }
        .icons-grid {
            justify-content: space-between;
            gap:6px;
        }

        .drop-area {
            padding: 0px;
        }

        .captcha-required {
            font-size: 13px;
        }
        .icon-card .icon-name {
    font-size: 11px;
}
    }