.nb-4d7fa465-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: linear-gradient(90deg, #1b3eed 0%, #b23de8 100%);
    border-radius: 8px;
    padding: 30px 40px;
    color: #ffffff;
    gap: 30px;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.nb-4d7fa465-icon-wrapper {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.nb-4d7fa465-icon-circle {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4339f2;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.nb-4d7fa465-icon-circle svg {
    width: 28px;
    height: 28px;
    fill: #4339f2;
}

.nb-4d7fa465-text-content {
    flex: 1;
    min-width: 250px;
    z-index: 1;
}

.nb-4d7fa465-title {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.nb-4d7fa465-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.nb-4d7fa465-form-wrapper {
    flex: 1;
    min-width: 300px;
    z-index: 1;
}

.nb-4d7fa465-form {
    display: flex;
    background: #ffffff;
    border-radius: 50px;
    padding: 5px;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.nb-4d7fa465-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
    color: #333;
}

.nb-4d7fa465-form input::placeholder {
    color: #aaa;
}

.nb-4d7fa465-form button {
    background: linear-gradient(90deg, #6c3ce9 0%, #da3fe7 100%);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.nb-4d7fa465-form button:hover {
    opacity: 0.9;
}

.nb-4d7fa465-footer {
    margin: 10px 0 0 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .nb-4d7fa465-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .nb-4d7fa465-form {
        flex-direction: column;
        border-radius: 8px;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 10px;
    }
    
    .nb-4d7fa465-form input {
        width: 100%;
        background: #fff;
        border-radius: 50px;
    }
    
    .nb-4d7fa465-form button {
        width: 100%;
    }
}