.idl-fw-wrapper {
    width: min(780px, 92vw);
    padding: 64px;
    background: linear-gradient(135deg, #2e1f5e 0%, #241852 55%, #1a1140 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    color: #fff;
    animation: in 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.idl-fw-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% -10%, rgba(167, 139, 250, 0.18), transparent 45%);
    pointer-events: none;
}

@keyframes in {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.idl-fw-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(90deg, #ffffff, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 48px;
    position: relative;
}

.idl-fw-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
    position: relative;
}

.idl-fw-field label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.idl-fw-select {
    width: 100%;
    height: 60px;
    padding: 0 48px 0 20px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234c1d95' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 16px center / 20px,
        #f5f3ff;
    border: 1px solid rgba(196, 181, 253, 0.4);
    border-radius: 14px;
    color: #2e1f5e;
    font-size: 16px;
    font-weight: 600;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.idl-fw-select:hover {
    border-color: rgba(196, 181, 253, 0.7);
}

.idl-fw-select:focus {
    outline: none;
    border-color: #c4b5fd;
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.25);
}

.idl-fw-button {
    position: relative;
    border: 2px solid #c4b5fd !important;
    border-radius: 14px;
    background: rgba(196, 181, 253, 0.08) !important;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    overflow: hidden;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.idl-fw-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.idl-fw-button:hover {
    color: #2e1f5e !important;
    background-color: #c4b5fd !important;
    border-color: #c4b5fd !important;
    transform: translateY(-2px);
}

.idl-fw-button:hover::after {
    transform: translateX(120%);
}

.idl-fw-button:active {
    transform: translateY(0);
}
